MapMapQuality Property |
Namespace: Telogis.GeoBase
Defaults to Perfect.
See MapQuality for more information.// 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'