Click or drag to resize

MapHeading Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets or sets the heading of the map.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public double Heading { get; set; }

Property Value

Type: Double

Implements

IMapHeading
Remarks

This controls the orientation of the map (that is, it defines which direction is 'up' on the map).

Defaults to 0.

Examples
C#
// Create a Map object
Telogis.GeoBase.Map myMap = new Telogis.GeoBase.Map();

// Set heading to 180. South = Up.
myMap.Heading = 180;

Console.WriteLine("The heading of the map is {0}", myMap.Heading);
// 'The heading of the map is 180'
See Also