Class VectorTileFeatureRenderInfo
Rendering settings for vector tile feature.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.Map.VectorTiles.Rendering
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class VectorTileFeatureRenderInfo
Constructors
VectorTileFeatureRenderInfo(RadVectorFeatureGeometryType, String, Double, LayerType, Dictionary<String, Object>)
Initializes a new instance of the VectorTileFeatureRenderInfo class.
Declaration
public VectorTileFeatureRenderInfo(RadVectorFeatureGeometryType geometryType, string id, double zoom, LayerType layerType, Dictionary<string, object> properties)
Parameters
RadVectorFeatureGeometryType
geometryType
|
System.String
id
|
System.Double
zoom
|
LayerType
layerType
|
System.Collections.Generic.Dictionary<System.String, System.Object>
properties
|
Properties
Cancel
Gets or sets a value indicating whether this feature rendering should be cancelled or not.
Declaration
public bool Cancel { get; set; }
Property Value
System.Boolean
|
GeometryType
Gets the vector feature geometry type.
Declaration
public RadVectorFeatureGeometryType GeometryType { get; }
Property Value
RadVectorFeatureGeometryType
|
Id
Gets the feature Id.
Declaration
public string Id { get; }
Property Value
System.String
|
LayerType
Gets the feature parent layer rendering type.
Declaration
public LayerType LayerType { get; set; }
Property Value
LayerType
|
Layout
Gets the feature text rendering settings.
Declaration
public LayoutRenderInfo Layout { get; set; }
Property Value
LayoutRenderInfo
|
Paint
Gets the feature geometry rendering settings.
Declaration
public PaintRenderInfo Paint { get; set; }
Property Value
PaintRenderInfo
|
Properties
Gets the feature properties data.
Declaration
public Dictionary<string, object> Properties { get; }
Property Value
System.Collections.Generic.Dictionary<System.String, System.Object>
|
Zoom
Gets the feature zoom.
Declaration
public double Zoom { get; }
Property Value
System.Double
|