Maps
See Scenes (3D) in this guide for more information about working with scenes.
You can use a map to:
- Display a basemap layer
A basemap layer is the layer in a map or scene that displays basemap data. The data source for a basemap layer is typically a basemap service. such as streets or satellite imagery. - Access and display data layers
A data layer is a layer that references geographic data from a file or a service and is used to visualize the data in a map or scene. based on files or services, including data you have authored. - Provide context for temporary points, lines, polygons, or text displayed as graphics
A graphic is a visual element composed of a geometry, symbol, and attributes that is displayed on a map or scene. . - Inspect data layers and display information from attributes
Attributes are fields and values for a single feature or non-spatial record. They are typically stored in a database or service such as a feature service. . - Measure distance and explore spatial relationships between geometries
A geometry is a geometric shape, such as a point, polyline, or polygon, that contains one or more coordinates and a spatial reference. . - Save a collection of layers as a web map
A web map is a map stored as a JSON object that defines properties such as the basemap layer, data layers, layer styles, and pop-up styles. Its JSON structure is defined by the web map specification. to be shared across ArcGIS.
How a map works
A map
For offline
Map
A map contains a collection of layers
You can open an existing map or create one entirely with code. To create a map, you typically first add a basemap layer
// Provide an access token for your app (usually when the app starts).
Esri.ArcGISRuntime.ArcGISRuntimeEnvironment.ApiKey = "YOUR_ACCESS_TOKEN";
// Create a map with an ArcGIS basemap.
var map = new Map(BasemapStyle.ArcGISNavigation);
// If preferred, you can provide a key directly for the basemap.
//map.Basemap.ApiKey = "YOUR_ACCESS_TOKEN";
You can also open a map stored in a portal
Map webMap = new Map(new Uri("https://www.arcgis.com/home/item.html?id=acc027394bc84c2fb04d1ed317aac674"));
You can define the initial extent at which the map will display by setting the Map.InitialViewpoint property.
Layer
Each layer
The Layer class is the base class for all types of layers used in ArcGIS Maps SDK for .NET. The type of layer you create depends on the type of data you want to display. For example, to display feature data you can create a FeatureLayer that references an online service (such as a feature service
// Provide an access token for your app (usually when the app starts).
Esri.ArcGISRuntime.ArcGISRuntimeEnvironment.ApiKey = "YOUR_ACCESS_TOKEN";
var map = new Map(BasemapStyle.ArcGISTopographic);
// Access hosted feature service tables with their URL.
var trailheadsTable = new ServiceFeatureTable(new Uri(
"https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/Trailheads_Styled/FeatureServer/0"));
var trailsTable = new ServiceFeatureTable(new Uri(
"https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/Trails_Styled/FeatureServer/0"));
var openSpacesTable = new ServiceFeatureTable(new Uri(
"https://services3.arcgis.com/GVgbJbqm8hXASVYi/arcgis/rest/services/Parks_and_Open_Space_Styled/FeatureServer/0"));
// Add layers to the map.
map.OperationalLayers.Add(new FeatureLayer(trailheadsTable));
map.OperationalLayers.Add(new FeatureLayer(trailsTable));
map.OperationalLayers.Add(new FeatureLayer(openSpacesTable));
// Display the map in a map view.
MainMapView.Map = map;
MapView
A map view
A map view
- Access data for data layers and graphics.
- Display the current location as a point on the map.
- Identify and select features at a specified location.
- Export an image of the current display.
- Rotate the map display.
- Apply a time extent to filter the display of features.
- Filter layer data using attribute and spatial criteria.
- Display image overlays on the map view.
Display a mapMapView control. Changes you make to the map, such as adding, removing, or reordering layers, will immediately be reflected in the map view display. The Map.InitialViewpoint property will determine the area of the map shown when the map loads. You can also use MapView.SetViewpointAsync() and MapView.SetViewpointRotationAsync() to programmatically change the map area or orientation shown in the display.
MapView mapView = new MapView();
mapView.Map = map;
mapView.SetViewpointCenterAsync(latitude: 34.027,
longitude: -118.805,
scale: 72223.819286);
Examples
Create and display a map
You can display a basic map by creating one with a basemap layer, setting its initial extent, and adding it to a map view. To learn how to add additional data, see the Layers topic.
Steps
- Create a new
Map, passing aBasemapStyleinto the constructor. - Optionally, add one or more data layers to the map.
- Assign the map to a
MapViewcontrol in your app. - Set the map view
Viewpointto focus on a specified area of the map.
MainMapView.Map = new Map(BasemapStyle.ArcGISNavigation);
MainMapView.SetViewpoint(new Viewpoint(
latitude: 34.027,
longitude: -118.805,
scale: 72223.819286));
You can also create and save a web map
Display a web map
You can open a web map
Steps
- Create an
ArcGISPortalobject to connect to the portal that hosts a web map you want to load. If you don't provide a portal URL, the connection defaults to ArcGIS Online. - Create a
PortalItemobject using the item IDAn item ID is a unique identifier representing a single item stored, managed, and accessed in a portal, such as a web map, hosted layer, or file. for the item that stores the web map. - Create a new map, passing the portal item
An item, also known as a content item, is a resource stored in a portal such as a web map, hosted layer, style, script tool, file, or notebook. into the constructor. - Assign the map to a
MapViewcontrol in your app.
// If no URL is provided for CreateAsync, ArcGIS Online is assumed (https://www.arcgis.com).
ArcGISPortal arcGISOnline = await ArcGISPortal.CreateAsync();
PortalItem webMapItem = await PortalItem.CreateAsync(arcGISOnline, "41281c51f9de45edaf1c8ed44bb10e30");
Map webMap = new Map(webMapItem);
MainMapView.Map = webMap;
Display a mobile map
This example displays a map
Steps
- Create a
MobileMapPackageusing the path to a local .mmpk file. - Call
MobileMapPackage.LoadAsync()to load the package. - When the package loads, get the first map from the package using the
MobileMapPackage.Mapsproperty. - Display the map in a
MapView.
MobileMapPackage package = await MobileMapPackage.OpenAsync(filePath);
await package.LoadAsync();
MainMapView.Map = package.Maps.First();
Use API key access tokens
An API key access tokenAPIKeyResourceInterface.
Tutorials
Samples

Set basemap

Create and save a map

Open map (URL)

Create geometries

Display device location with autopan modes



