如何在MapBox v10.0中禁用手势?
本指南提到禁用Kotlinhere的用户交互。
mapView = findViewById(R.id.mapView)
mapboxMap = mapView.getMapboxMap()
mapboxMap.gestures(); //Method not found??
我不知道如何用科特林编码。我不能绕过它来使用Java。在Java中,它说它不能解析符号"手势"。 其他功能也存在相同问题。
解决方案
您需要获取对GesturesPlugin的引用,请尝试此操作:
final GesturesPlugin gesturesPlugin = GesturesUtils.getGestures((mapView));
gesturesPlugin.setPitchEnabled(false);
gesturesPlugin.setScrollEnabled(false);
}
相关文章