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
Is it possible for you to implement widget symbol's as in the https://pub.dev/packages/flutter_map ?
It's much more agile and easier to work with widgets in flutter instead of pngs.
It can look smth like this:
Marker( width: 80.0, height: 80.0, point: new LatLng(51.5, -0.09), builder: (ctx) => Container( child: new FlutterLogo(), ), )
And is there any way to bulk add symbols on the map? (not one-by-one) Layers implementation in leaflet is great for this.
The text was updated successfully, but these errors were encountered:
Hey, unfortunately I think this is impossible right now, because the project relies on the Mapbox Android and iOS SDKs for actually rendering the maps and annotations, and these can't display flutter widgets.
@agetman-gh I'm going to close this issue, #212 also tracks a very similar feature request.
To answer your second question, #279 will add support for batch adding.
Hey
Is it possible for you to implement widget symbol's as in the https://pub.dev/packages/flutter_map ?
It's much more agile and easier to work with widgets in flutter instead of pngs.
It can look smth like this:
Marker( width: 80.0, height: 80.0, point: new LatLng(51.5, -0.09), builder: (ctx) => Container( child: new FlutterLogo(), ), )
And is there any way to bulk add symbols on the map? (not one-by-one) Layers implementation in leaflet is great for this.
The text was updated successfully, but these errors were encountered: