I need help to integrate leaflet maps in flutter. The project I'm working on requires showing custom markers, animations, routes and drawings on the map. But I can't find any documentation or tutorials explaining this in flutter.
Asked
Active
Viewed 1.2k times
2 Answers
8
You can use flutter_map
package for that. That's one of two most widely used maps packages (next to google_maps_flutter
, which is obviously only for Google Maps).
https://github.com/johnpryan/flutter_map
It features all things that you need AFAIR.

Albert221
- 5,223
- 5
- 25
- 41
-
1Dear googler, please notice: The flutter_map repository is licensed under BSD-3 clause! – MojioMS Jun 17 '21 at 02:08
2
You may check out the below Flutter Maps widget which allows you to render tiles from different services like OpenStreetMaps, Azure Maps, etc.
https://pub.dev/packages/syncfusion_flutter_maps
It has the features you have requested like markers, adding animations, drawing routes on the maps, highlight a region, etc. Check the below links for more details.
https://help.syncfusion.com/flutter/maps/markers
https://help.syncfusion.com/flutter/maps/vector-layers/polyline-layer#adding-polylines

Mohamed Samsudeen
- 1,046
- 1
- 8
- 20