Rotation breaks the location marker
When you zoom the map by pinching, the location market moves all over the place. This can be seen in the example project here.
Dear @Michael-Eliosov not the zooming but the rotation is the problem here. That was recently added to flutter_map. As a workaround you can use disable it:
options: MapOptions(
plugins: <MapPlugin>[
LocationPlugin(),
],
interactiveFlags: InteractiveFlag.all & ~InteractiveFlag.rotate,
),
I'll check how we can make it work with rotation as well.
Let's keep it open because the issue still exists and the hint above is just a workaround.
Okay, no problem
It is also breaking when simply zooming. Any idea how to solve this?
Have you disabled rotation like suggested?
Dear @hpulst most likely you do zooming and rotation. The zooming works. Please see https://github.com/Xennis/flutter_map_location/issues/75#issuecomment-864374904 to disable the rotation. If you still think zooming is broken please open a new issue.