A Xamarin project that provides the Mapbox iOS SDK's public examples and Android SDK´s public examples.
Once you have generated an access token, you need to set it up within your app. There are two ways to provide an access token in your app:
- In the Info.plist file set MGLMapboxAccessToken with the value of your token.
- In the AppDelegate.FinishedLaunching method, call AccountManager.AccessToken = "YOUR-TOKEN";
Once you have generated an access token, you need to set it up within your app:
- In Strings.xml set the access_token with the value of your token.
- In your MainActivity call MapboxAccountManager.Start(this, Resources.GetString(Resource.String.access_token));
- Mapbox iOS SDK API documentation
- First steps with the Mapbox iOS SDK
- Mapbox Android SDK API documentation
- First steps with the Mapbox Android SDK
Thanks to NAXAM for the Xamarin Mapbox bindings.