在100.x版本中垫言,MapView 默認帶有手勢旋轉(zhuǎn)功能像捶,我們可以通過重寫 MapView 的Touch監(jiān)聽事件來關(guān)閉酌心。
class MapOnTouchListener extends DefaultMapViewOnTouchListener{
public MapOnTouchListener(Context context, MapView mapView) {
super(context, mapView);
}
@Override
public boolean onSingleTapUp(MotionEvent e) {
return super.onSingleTapUp(e);
}
@Override
public boolean onRotate(MotionEvent event, double rotationAngle) {
return false;
}
}
在代碼中使用:
mMapView.setOnTouchListener(new MapOnTouchListener(mContext,mMapView));