Click or drag to resize

MapMapQuality Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets or sets the quality at which this Map will be rendered.

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

Property Value

Type: MapQuality

Implements

IMapMapQuality
Remarks

Defaults to Perfect.

See MapQuality for more information.
Examples
C#
// Create a Map object
Telogis.GeoBase.Map myMap = new Telogis.GeoBase.Map();

// Set to 'Fast' > The least processor intensive mode. This setting results in less accurate maps.
myMap.MapQuality = MapQuality.Fast;

Console.WriteLine("The quality of the map is {0}", myMap.MapQuality);
// 'The quality of the map is Fast'
See Also