Display a map with an imagery basemap.
Use case
The map is the fundamental building block of any GIS application and is used to specify how geographic data is organized and communicated to your users.
How to use the sample
Run the sample to view the map. Pan and zoom to navigate the map.
How it works
- Create an
Map
with aBasemapStyle.ArcGISImageryStandard
basemap style. - Create a
MapView
object to display the map. - Set the map to the map view.
Relevant API
- Basemap
- Map
- MapView
Tags
basemap, map
Sample Code
<UserControl
x:Class="ArcGIS.UWP.Samples.DisplayMap.DisplayMap"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:esriUI="using:Esri.ArcGISRuntime.UI.Controls"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<esriUI:MapView x:Name="MyMapView"/>
</Grid>
</UserControl>