Android Google Maps: disable dragging in MapFragment

前端 未结 6 857
死守一世寂寞
死守一世寂寞 2020-12-29 17:52

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

6条回答
  •  天涯浪人
    2020-12-29 18:30

    You can disable dragging in MapFragment using:

        mMap.getUiSettings().setScrollGesturesEnabled(false);
        mMap.getUiSettings().setZoomGesturesEnabled(false);
        mMap.getUiSettings().setScrollGesturesEnabledDuringRotateOrZoom(false);
    

提交回复
热议问题