Select to view content in your preferred language

How to show imagery with labels on the map

809
3
Jump to solution
07-28-2022 09:13 AM
RobWag
by
Emerging Contributor

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.

0 Kudos
2 Solutions

Accepted Solutions
Dominique_Broux
Occasional Contributor

Did you try ArcGISImagery which is the composite basemap with raster imagery and vector labels?

View solution in original post

JoeHershman
MVP Alum

Try:

BasemapStyle.ArcGISImagery

Thanks,
-Joe

View solution in original post

3 Replies
Dominique_Broux
Occasional Contributor

Did you try ArcGISImagery which is the composite basemap with raster imagery and vector labels?

JoeHershman
MVP Alum

Try:

BasemapStyle.ArcGISImagery

Thanks,
-Joe
RobWag
by
Emerging Contributor

Thank you very much.

0 Kudos