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.