Available for: Windows 8.1

Overview

The RadMap control visualizes spatial data using layered architecture. It could display spatial data points (e.g. location of cities), polylines (e.g. road connections), or polygons (shape of countries or continents) in a geographic coordinate system. In this coordinate system, a point on the surface of the earth is defined using latitudes and longitudes.

  • Latitude: This is measured as the angle from the equatorial plane to the line drawn from the center of the earth to the point on the surface. Usually latitude values range from 90° (toward the North Pole and suffixed with "N") to -90° (towards the South Pole and suffixed with "S").
  • Longitude: This is measured on the equatorial plane and is defined as the angle between the line drawn from the center of the earth to the point and the line drawn from center of the earth to the prime meridian. Usually the longitude values range from 180° (to the east of prime meridian and suffixed with "E") to -180° (to the west of prime meridian and suffixed with "W").

Rad Map-Geographic Coordinate System

The position of the spatial data is described by the Location structure, that has the following properties:

  • Latitude (double): Gets the latitude value of the location. The value should be between -90° and 90°.
  • Longitude (double): Gets the longitude value of the location. The value should be between -180° and 180°.

The RadMap control could use two types of layers:

  • MapShapeLayer: Uses a shape file as source.
  • MapUserLayer:Uses a collection of shapes (any FrameworkElement) in a geographic context defined by the user.

Other features of the layers are:

MapLayer Class

All types of layers that the map can use inherit from the MapLayer abstract class. It exposes the following properties:

  • Bounds (LocationRect): Gets the bounding rectangle of the layer in geographical coordinates.

See Also