Hi!
Is it possible in Runtime SDK for Android 100.6 to turn off the standard gesture navigation in Scene?
Hi Alexander,
The best way to do this in Android is to return true from the touch listener `mSceneView.setOnTouchListener((v, event) -> true);`
It's the MapView/SceneView rather than the Map/Scene which handles touch events from the user. Think of the MapView/SceneView as a window onto your Map/Scene.
Hope this helps!
Trevor