Click or drag to resize

MapMinZoom Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets the minimum zoom value of this map.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public double MinZoom { get; set; }

Property Value

Type: Double

Implements

IMapMinZoom
Remarks

Defaults to 0.001.

See MaxZoom.
Examples
C#
// 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'
See Also