-
-
Notifications
You must be signed in to change notification settings - Fork 23
Closed
Labels
bugSomething isn't workingSomething isn't working
Milestone
Description
Platforms
Web
Version of flutter-maplibre
0.3.0
Bug Description
When allowInteraction is set on a WidgetLayer, the map will no longer pan, zoom, rotate, etc. This appears to have started in version0.3.0 and applies to the Web platform. It seems to be working on Android.
Steps to Reproduce
- Create a map with a
WidgetLayerunderchildren. - Set the
allowInteractionproperty totrue. - Run on Web.
- Try to scroll zoom, click to pan, etc.
Expected Results
Map should respond to gestures like on other platforms.
Actual Results
Map does not respond to any gestures.
Code Sample
children: <Widget>[
WidgetLayer(
allowInteraction: true,
markers: <Marker>[
myMarkers,
],
),
],Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working
Projects
Status
Done