Google Maps Android API - trigger touch event on map

谁说胖子不能爱 提交于 2019-12-13 09:55:19

问题


I need a way to trigger/fire a map touch event programmatically. Is there any solution?

Update 1:

I have map and a kmlLayer on it. the kmlLayer has only a click event but in my case I need to fire this event when I click on another button. it's exactly what I want.

According to this answer I add a fake and programmatically touch event but it not worked on a map view!

Update 2:

My question is totally different with Google Maps Android API v2 - detect touch on map. Because it is about how to interact when a real touch happend but in my case I want to fire event programmaticly first! after this the map or laye listener.


回答1:


you can try this...

googleMap.setOnCameraMoveStartedListener(new GoogleMap.OnCameraMoveStartedListener() {
    @Override
    public void onCameraMoveStarted(int reason) {
        if (reason == REASON_GESTURE) {
            // The user gestured on the map.
        } else if (reason == REASON_API_ANIMATION) {
            // The user tapped something on the map.
        } else if (reason == REASON_DEVELOPER_ANIMATION) {
            // The app moved the camera.
        }
    }
});


来源:https://stackoverflow.com/questions/48983555/google-maps-android-api-trigger-touch-event-on-map

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!