Sir_Catapimba
Sir_Catapimba

Reputation: 91

Free Autocomplete map on Flutter

I'm implementing a map using openstreetmap which you guys know it is 100% free. So I want the same approach talking about searching addresses with a textfield. Is it that possible? Or I really have to generate an API key for Google or other provider like Mapbox? Thanks in advance

Here is my map

Upvotes: -2

Views: 1261

Answers (1)

JaffaKetchup
JaffaKetchup

Reputation: 1638

You can use Nominatim. Either setup your own server (recommended), or use their public API and conform to their rules. Note that, if using their public API, autocomplete is strictly forbidden.

Upvotes: 1

Related Questions