Replies: 1 comment 7 replies
-
Hello @sqcsabbey, are you asking to find a solution for |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What we need:
Events that specifically trigger when a user gesture starts a pan, zoom, tilt, or rotate action.
My use case:
We have a flutter-maplibre-gl app that automatically follows an external location with panning, zooming, and rotating. When users interact with the map, we want to yield control to them by disabling this automatic following.
Current challenges:
Events like 'onZoom' don't distinguish between our programmatic zooming and user-initiated zooming, which could happen simultaneously.
Events like 'onDoubleClick' need to be combined with others, like 'onDrag', to guess if the user is zooming or rotating, and we might not always guess correctly.
Is there a more straightforward way to detect when users begin these map interactions?
Beta Was this translation helpful? Give feedback.
All reactions