Follow these steps to migrate your existing app to use ArcGIS location services.
This information is intended for developers who have an existing app and would like to update it to use ArcGIS location services. Use the current version to ensure that you have access to the latest capabilities.
Authentication
To use any of the ArcGIS location services, your app must provide authentication with an appropriate access token. Access tokens define the privileges available to your application. There are three types of authentication that can be used to access location services:
- API key authentication: This type of authentication uses a long-lived access token to authenticate requests to ArcGIS location services. For more information see the Introduction to API key authentication. Go to the Create an API key tutorial to obtain a new API Key access token using your ArcGIS Location Platform account or ArcGIS Online account account. This is the recommended type of authentication for developers new to ArcGIS, or to development in general.
- User authentication: This generates a short-lived token via OAuth credentials, authorizing your application to access ArcGIS location services on behalf of a user logged in with an ArcGIS Location Platform or ArcGIS Online account.
- App authentication: This generates a short-lived token via OAuth credentials, authorizing your application to access ArcGIS location services on your behalf.
Learn more about getting and using an access token in Security and authentication and the Display a map tutorial.
Global API key
When your app starts, you can set the api key on your ArcGISRuntimeEnvironment
to an API key access token. This authorizes access to all ArcGIS location services used by your app.
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
Esri.ArcGISRuntime.ArcGISRuntimeEnvironment.ApiKey = "YOUR_ACCESS_TOKEN";
}
}
}
If needed, you can override this access token by explicitly setting a different access token on layers, basemaps, or any other classes that use platform location services (those that implement the APIKeyResource
interface).
Basemaps
Review the basemap styles service and the variety of basemaps available. Create a new basemap using one of the enumeration values from BasemapStyle
and use it to create your Map
.
You can set an API Key access token directly on the basemap or default to a global access token, if one is set on the ArcGISRuntimeEnvironment
. The API Key must have the privilege Basemap styles service enabled.
// Create a new 'topographic' basemap.
var basemap = new Basemap(BasemapStyle.ArcGISTopographic);
// Optionally, set a specific access token directly for the basemap.
// (Not required if an access token has been set on the ArcGISRuntimeEnvironment).
basemap.ApiKey = "YOUR_ACCESS_TOKEN";
// Create a new map that uses the basemap.
var map = new Map(basemap);
Geocoding
Access to the geocoding service is available using an API Key access token, either globally for the app, or by setting it explicitly on your LocatorTask
. If you are using an API key access token it must have been generated with the Geocoding privilege.
Routes and directions
Access to routing and directions APIs is unchanged with the new ArcGIS location services introduced with ArcGIS Location Platform. Authentication is required to access these services, using API key authentication or user authentication. If you are using an API key access token must have been generated with the Routing privilege.
See the Find routes and directions topic for more information.
Other services
See all the Location services available.