New to Telerik UI for WPFStart a free 30-day trial

Represents the grid settings for the DynamicLayer. Specify how the whole Earth surface will be divided into the cells.

Definition

Namespace:Telerik.Windows.Controls.Map

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
public class ZoomGrid : DependencyObject

Inheritance: objectZoomGrid

Constructors

Initializes a new instance of the ZoomGrid class.

C#
public ZoomGrid()

Initializes a new instance of the ZoomGrid class.

C#
public ZoomGrid(int latitudes, int longitudes, int zoom)
Parameters:latitudesint

Latitude divisions in a grid.

longitudesint

Longitude divisions in a grid.

zoomint

Minimal zoom.

Properties

Gets or sets latitude divisions in a grid.

C#
public int LatitudesCount { get; set; }

Gets or sets longitude divisions in a grid.

C#
public int LongitudesCount { get; set; }

Gets or sets minimal zoom.

C#
public int MinZoom { get; set; }