Class ZoomGrid
Represents the grid settings for the DynamicLayer. Specify how the whole Earth surface will be divided into the cells.
Inheritance
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class ZoomGrid : DependencyObject
Constructors
ZoomGrid()
Initializes a new instance of the ZoomGrid class.
Declaration
public ZoomGrid()
ZoomGrid(Int32, Int32, Int32)
Initializes a new instance of the ZoomGrid class.
Declaration
public ZoomGrid(int latitudes, int longitudes, int zoom)
Parameters
System.Int32
latitudes
Latitude divisions in a grid. |
System.Int32
longitudes
Longitude divisions in a grid. |
System.Int32
zoom
Minimal zoom. |
Properties
LatitudesCount
Gets or sets latitude divisions in a grid.
Declaration
public int LatitudesCount { get; set; }
Property Value
System.Int32
|
LongitudesCount
Gets or sets longitude divisions in a grid.
Declaration
public int LongitudesCount { get; set; }
Property Value
System.Int32
|
MinZoom
Gets or sets minimal zoom.
Declaration
public int MinZoom { get; set; }
Property Value
System.Int32
|