New to Telerik UI for WinUI? Download free 30-day trial

Imagery sets

The Bind Maps Rest Provider imagery service supports different types of visualization. The possible imagery sets which can be used are:

To choose an imagery set, you can set the Mode property of the BingRestMapProvider.

Example 1: Setting Mode property in XAML

<dataVisualization:RadMap> 
    <dataVisualization:RadMap.Provider> 
        <telerikMap:BingRestMapProvider x:Name="bingRestMapProvider" ApplicationId="Bing_Map_Key" Mode="Aerial"/> 
    </telerik:RadMap.Provider> 
</telerik:RadMap> 
The CanvasLight, CanvasDark, CanvasGray, AerialOnDemand, RoadOnDemand are not added to the toolbar of the control by default. To add them to the map view mode commands bar, you can use the RegisterSetSourceCommand() method of BingRestMapProvider.

Example 2: Adding CanvasGray mode to the view mode commands bar

public MainWindow() 
{ 
    InitializeComponent(); 
    this.bingRestMapProvider.RegisterSetSourceCommand(MapMode.CanvasGray, LocalizationManager.GetString("MapCanvasGrayCommand")); 
} 

Aerial with Labels

This mode offers worldwide orthographic aerial and satellite imagery. The labels in this mode are enabled by default.

Figure 1: Aerial mode with labels

WinUI RadMap Rad Map Features Rest Providers 01 with labels

Aerial without Labels

You can the disable labels using the IsLabelVisible property. When you set it to False the labels disappear. Figure 2 is a snapshot of the Aerial mode for Bing Map Rest Provider when the labels are not visible.

Figure 2: Aerial mode without labels

WinUI RadMap Rad Map Features Rest Providers 01 nolabels

AerialOnDemand

This imagery set represent Aerial imagery with on-demand road overlay.

Figure 3: AerialOnDemand mode

WinUI RadMap Rad Map Features Rest Providers 01 with labels

Road

The road imagery type is a set of static tile server. The tiles are generated ahead of time and then stored and served. The Road mode of Bing Maps ignores the IsLabelVisible property. For this mode the labels are displayed always. Figure 4 is an example of the Road Mode definition.

Figure 4: Road mode

WinUI RadMap Rad Map Features Rest Providers 01 road

RoadOnDemand

The road on demand imagery type provides the same map tiles used in the latest Bing maps controls. These tiles are generated on the fly as needed and are the most up to date road maps.

Figure 6: RoadOnDemand mode

WinUI RadMap Rad Map Features Providers Bing Map Birdseye

CanvasLight

A light version of the road maps which provides neutral background with minimal colors, labels and features.

Figure 7: CanvasLight mode

WinUI RadMap Rad Map Features Providers Bing Map Birdseye

CanvasGray

A gray version of the road maps which provides neutral background with minimal colors, labels and features.

Figure 8: CanvasGray mode

WinUI RadMap Rad Map Features Providers Bing Map Birdseye

CanvasDark

A dark version of the road maps which provides neutral background with minimal colors, labels and features.

Figure 8: CanvasDark mode

WinUI RadMap Rad Map Features Providers Bing Map Birdseye

See Also

In this article
Not finding the help you need?