Frostack
Frostack

Reputation: 681

how can i implement a map (not Google maps) in Flutter?

I want to implement a map in flutter (can't use google maps) how can I do it? it's just a normal map with the ability to show current location constantly.

Upvotes: 2

Views: 2994

Answers (1)

Petr Jelínek
Petr Jelínek

Reputation: 120

You can take a look on this package - https://pub.dev/packages/flutter_map

As a map tiles, you can use one of these https://wiki.openstreetmap.org/wiki/Tile_servers (but read open street maps terms of use https://www.openstreetmap.org/copyright).

If you want to display current location, you can use this package https://pub.dev/packages/location and you can simply add new marker on the map.

Hope this help!

Upvotes: 3

Related Questions