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