MapMapScale Property |
Namespace: Telogis.GeoBase
// Create a Map object Telogis.GeoBase.Map myMap = new Telogis.GeoBase.Map(); Console.WriteLine("The map scale is {0}", myMap.MapScale.ToString("0.0")); // 'The map scale is 24875.5' // Adjust zoom to adjust scale. Here we zoom close (value of 1) myMap.Zoom = ZoomLevel.StreetLevel; Console.WriteLine("The map scale is now {0}", myMap.MapScale.ToString("0.0")); // 'The map scale is now 16.6'