Hello, everyone,
I would like to display the world imagery with labels.
Unfortunately the basemap style ArcGISImageryLabels just displays the labels while the basemap style ArcGISImageryStandard only shows the world imagery.
The following code snippet just shows the labels on the map:
Map map = new Map();
map.Basemap = new Basemap(BasemapStyle.ArcGISImageryLabels);
currentMapView.Map = map;
await map.LoadAsync();
currentMapView.WrapAroundMode = Esri.ArcGISRuntime.UI.WrapAroundMode.EnabledWhenSupported;
I don't know how to combine those 2 basemap styles.
Does anyone have a clue how to solve this problem?
Thanks in advance.
Solved! Go to Solution.
Did you try ArcGISImagery which is the composite basemap with raster imagery and vector labels?
Did you try ArcGISImagery which is the composite basemap with raster imagery and vector labels?
Try:
BasemapStyle.ArcGISImagery
Thank you very much.