You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, currently the map view does not support rotation. This is rather odd, and can make it quite hard to understand where somebody is if the map isn't orientated in the way you expect.
It does seem that osmdroid supports rotation already, so this should be fairly easy to implement, no?
The text was updated successfully, but these errors were encountered:
val rotationGestureOverlay = new RotationGestureOverlay(context, mMapView);
rotationGestureOverlay.isEnabled
map.setMultiTouchControls(true);
map.overlys.add(rotationGestureOverlay);
I notice this in OSMMapFragment.kt:
if (!overlays.any { it isRotationGestureOverlay }) {
overlays.add(RotationGestureOverlay(this))
}
Am I just being dumb and is rotation already supported?
Hi, currently the map view does not support rotation. This is rather odd, and can make it quite hard to understand where somebody is if the map isn't orientated in the way you expect.
It does seem that osmdroid supports rotation already, so this should be fairly easy to implement, no?
The text was updated successfully, but these errors were encountered: