5

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.

kalan nawarathne
  • 1,944
  • 27
  • 26
Khalil LAABOUDI
  • 244
  • 1
  • 2
  • 12

2 Answers2

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
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