Google Maps Android MapView v2: disable zooming

后端 未结 4 1445
北恋
北恋 2020-12-19 03:36

Is there a way to disable the zooming (pinch and double tap) in the MapView but keep the scrolling?

This means setting clickable to false would not work

4条回答
  •  渐次进展
    2020-12-19 04:12

    import com.google.android.gms.maps.GoogleMap;
    
    public void onMapReady(GoogleMap map) {
    ...
    map.getUiSettings().setZoomGesturesEnabled(false);
    

    UiSettings Documentation

提交回复
热议问题