MapMaxZoom Property |
Namespace: Telogis.GeoBase
Defaults to 18000.
See Zoom.// Create a Map object Telogis.GeoBase.Map myMap = new Telogis.GeoBase.Map(); // Set maximum zoom to 100 myMap.MaxZoom = 100; Console.WriteLine("The maximum zoom value for this map is {0}", myMap.MaxZoom); // 'The maximum zoom value for this map is 100' // Then set maximum zoom to CityLevel (50) myMap.MaxZoom = ZoomLevel.CityLevel; Console.WriteLine("The maximum zoom value for this map is now {0}", myMap.MaxZoom); // 'The maximum zoom value for this map is now 50'