Can I disable drag functionality when the user tries to drag the map with his fingers without disturbing the Zoom in and Zoom out?
Any one please suggest an idea
You can disable dragging in MapFragment using:
mMap.getUiSettings().setScrollGesturesEnabled(false); mMap.getUiSettings().setZoomGesturesEnabled(false); mMap.getUiSettings().setScrollGesturesEnabledDuringRotateOrZoom(false);