Is there a way to disable the zooming (pinch and double tap) in the MapView but keep the scrolling?
MapView
This means setting clickable to false would not work
import com.google.android.gms.maps.GoogleMap; public void onMapReady(GoogleMap map) { ... map.getUiSettings().setZoomGesturesEnabled(false);
UiSettings Documentation