New to Telerik UI for WPF? 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

<telerik:RadMap> 
    <telerik:RadMap.Provider> 
        <telerik: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")); 
} 
You can remove specific imagery set from the map view mode commands bar, by removing them from the Commands collection of the BingRestMapProvider.

Example 3: Remove mode from the view mode commands bar

public MainWindow() 
{ 
    InitializeComponent(); 
    this.bingRestMapProvider.Commands.RemoveAt(0); 
} 

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

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

Rad Map Features Rest Providers 01 nolabels

AerialOnDemand

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

Figure 3: AerialOnDemand mode

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

Rad Map Features Rest Providers 01 road

Birdseye

The Bing Map Rest Provider also supports the Birdseye mode. This mode can be used for high resolution levels only (zoom level 19-20).

The Birdseye mode does not provide the tile images for all regions around the world. Some regions don't have images for Birdseye mode.

Here is an example of the Birdseye Mode definition:

Figure 5: Birdseye mode

Rad Map Features Providers Bing Map Birdseye

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

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

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

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

Rad Map Features Providers Bing Map Birdseye

See Also

In this article