MapHeading Property |
Namespace: Telogis.GeoBase
This controls the orientation of the map (that is, it defines which direction is 'up' on the map).
Defaults to 0.
// 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'