Search code examples
androidgoogle-mapsandroid-touch-event

How to handle touch event on google map (MapFragment)?


I am looking for a proper touch event that will be triggered when user touches the map (Google Maps Android API). Does anyone have an idea as to how to do it ?


Solution

  • You can directly add click listener and get position of touch on Map in form of Location.

     map.setOnMapClickListener(new GoogleMap.OnMapClickListener() {
                @Override
                public void onMapClick(LatLng latLng) {
                    
                  //Do what you want on obtained latLng
                }
            });