Android Google Maps: disable dragging in MapFragment

前端 未结 6 858
死守一世寂寞
死守一世寂寞 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:13

    You can disable dragging in MapFragment using:

    googleMap.getUiSettings().setScrollGesturesEnabled(false);
    

提交回复
热议问题