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

Tile layer rendering settings.

Definition

Namespace:Telerik.Windows.Controls.Map.VectorTiles.Rendering

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
public class VectorTileLayerRenderInfo

Inheritance: objectVectorTileLayerRenderInfo

Constructors

Initializes a new instance of the VectorTileLayerRenderInfo class.

C#
public VectorTileLayerRenderInfo(string name, long extent, long version, int zIndex)
Parameters:namestringextentlongversionlongzIndexint

Properties

Gets or sets a value indicating whether this layer rendering should be cancelled or not.

C#
public bool Cancel { get; set; }

Gets the layer extent.

C#
public long Extent { get; }

Gets the Layer features.

C#
public List<VectorTileFeatureRenderInfo> Features { get; }

Gets the layer rendering type.

C#
public LayerType LayerType { get; set; }

Gets the Layer name.

C#
public string Name { get; }

Gets the layer version.

C#
public long Version { get; }

Gets the layer ZIndex.

C#
public int ZIndex { get; }