MapPerspective Property |
Namespace: Telogis.GeoBase
// Create a Map object Telogis.GeoBase.Map myMap = new Telogis.GeoBase.Map(); // Set map perspective. TwoD or TwoPointFiveD. myMap.Perspective = MapPerspective.TwoD; Console.WriteLine("The map perspective is {0}", myMap.Perspective); // 'The map perspective is TwoD'