Adam Theory
Adam Theory

Reputation: 123

Mapbox API KEY for Flutter

I am learning mapbox using the flutter plugin, but i got struck when i try to use this plugin. I don't know where i can get mapbox search api_key. I tried searching in the application website, but there isn't enough information. Where i can get the api_key.

MapBoxPlaceSearchWidget(
      popOnSelect: true,
      apiKey:
          "API KEY",
      limit: 10,
      onSelected: (place) {},
      context: context,
)

Thanks in advance

Upvotes: 1

Views: 1171

Answers (1)

chunhunghan
chunhunghan

Reputation: 54367

You require a Mapbox account and API access token.
You can use https://account.mapbox.com/access-tokens/
After create account , you can create access token

enter image description here

enter image description here

Upvotes: 1

Related Questions