Version

Using Geographic Imagery

Purpose

This topic provides an overview of rendering geographic imagery in the background content of the UltraGeographicMap™ control.

Required background

The following table lists the topics required as a prerequisite to understanding this topic.

Topic Purpose

This topic provides information about layout of map elements in the UltraGeographicMap control.

This topic provides information on how to add the UltraGeographicMap control to an application page.

Geographic Imagery

Overview

Geographic imagery is a detailed representation of the world from a top view perspective. It can consist of an aerial-satellite map or road maps in a multi-scale imagery tiles structure. The UltraGeographicMap control can display geographic imagery in order to provide end-users with rich and interactive world maps and geographic context for geo-spatial data.

Types of geographic imagery

The UltraGeographicMap control can display geographic imagery tiles from two supported mapping services.

The following table summarizes supported and custom geographic imagery sources for the UltraGeographicMap control.

Geographic Imagery Preview Description

Open Street Maps

GeographicMap Using Geographic Imagery 1.png

Provides geographic imagery from Open Street Maps service with an option to display a road map style only in one coloring theme. For more information on using this geographic imagery, refer to the Displaying Geographic Imagery from Open Street Maps topic.

Bing Maps

GeographicMap Using Geographic Imagery 3.png

Provides geographic imagery from Bing Maps service with configurable options to display the following map styles:

  • Satellite Map Style

  • Satellite Map with Labels Style

  • Road Map Style

For more information on using this geographic imagery, refer to the Displaying Geographic Imagery from Bing Maps topic.

Map Background Content

Description

The UltraGeographicMap control’s SetImagery method is used to set the BackgroundContent to any of all supported types of geographic imagery sources. For each geographic imagery source, there is an imagery class used for rendering corresponding geographic imagery tiles.

The following table summarizes imagery classes provided by the UltraGeographicMap control.

Imagery Class Description

Represents the base control for all imagery classes that display all types of supported geographic imagery tiles.

Represents the multi-scale imagery control for displaying geographic imagery tiles from the Open Street Maps service.

Represents the multi-scale imagery control for displaying geographic imagery tiles from the Bing Maps service.

By default, the BackGroundContent is set to OpenStreetMapImagery object and the UltraGeographicMap control displays geographic imagery tiles from the Open Street Maps service. In order to display different types of geographic imagery tiles, the UltraGeographicMap control must be re-configured.

The following is a list of topics that provide information on how to display different types of geographic imagery tiles:

In the UltraGeographicMap control, map background content is always rendered behind all geographic series. In other words, geographic imagery tiles are always rendered first and any geographic series in the UltraGeographicMap control’s Series property is rendered on top of the geographic imagery tiles. This is especially important when displaying multiple geographic series in the same plot area of the UltraGeographicMap control because geographic imagery tiles can quickly get buried in the map view. For more information on this, refer to the following topics:

Code

This code example explicitly sets of the UltraGeographicMap control to the OpenStreetMapImagery object which provides geographic imagery tile from the Open Street Maps.

In Visual Basic:

Dim GeoMap As New UltraGeographicMap()
Me.GeoMap.SetImagery(New OpenStreetMapImagery())

In C#:

var geoMap = new UltraGeographicMap();
this.geoMap.SetImagery(new OpenStreetMapImagery());

Related Content

The following topics provide additional information related to this topic.

Topic Purpose

This topic provides information on how to bind geographic imagery in the UltraGeographicMap control.

This topic provides information about layout of map elements in the UltraGeographicMap control.

This topic provides information on how to display geographic imagery from Bing Maps service in the UltraGeographicMap control.

This topic provides information on how to display geographic imagery from Open Street Maps service in the UltraGeographicMap control.

This topic provides information on how to use multiple geographic series in the UltraGeographicMap control.