Reputation: 123
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
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
Upvotes: 1