如何在 Mapbox v10.0 中禁用手势?
How do I disable gestures in Mapbox v10.0?
该指南提到禁用 Kotlin 的用户交互 here。
mapView = findViewById(R.id.mapView)
mapboxMap = mapView.getMapboxMap()
mapboxMap.gestures(); //Method not found??
我不知道如何使用 Kotlin 编写代码。我无法解决 Java 的问题。在 Java 中,它表示无法解析符号 'gestures'。
其他功能也有同样的问题。
您需要获取对 GesturesPlugin 的引用,试试这个:
final GesturesPlugin gesturesPlugin = GesturesUtils.getGestures((mapView));
gesturesPlugin.setPitchEnabled(false);
gesturesPlugin.setScrollEnabled(false);
}
该指南提到禁用 Kotlin 的用户交互 here。
mapView = findViewById(R.id.mapView)
mapboxMap = mapView.getMapboxMap()
mapboxMap.gestures(); //Method not found??
我不知道如何使用 Kotlin 编写代码。我无法解决 Java 的问题。在 Java 中,它表示无法解析符号 'gestures'。 其他功能也有同样的问题。
您需要获取对 GesturesPlugin 的引用,试试这个:
final GesturesPlugin gesturesPlugin = GesturesUtils.getGestures((mapView));
gesturesPlugin.setPitchEnabled(false);
gesturesPlugin.setScrollEnabled(false);
}