Click or drag to resize

MapPerspective Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets or sets the perspective of this map. See MapPerspective.

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

Property Value

Type: MapPerspective

Implements

IMapPerspective
Remarks
Defaults to TwoD.
Examples
C#
// Create a Map object
Telogis.GeoBase.Map myMap = new Telogis.GeoBase.Map();

// Set map perspective. TwoD or TwoPointFiveD.
myMap.Perspective = MapPerspective.TwoD;

Console.WriteLine("The map perspective is {0}", myMap.Perspective);
// 'The map perspective is TwoD'
See Also