Represents a tiled map provider which produces tiles based on vector tile data and style files.
Definition
Namespace:Telerik.Windows.Controls.Map
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public abstract class VectorTileMapProvider : TiledProvider, IDisposable
Inheritance: objectMapProviderBaseTiledProviderVectorTileMapProvider
Derived Classes:
Implements:
Inherited Members
Constructors
protected VectorTileMapProvider()
Fields
StyleFileSourceProperty
DependencyProperty
Identifies the StyleFileSource dependency property.
public static readonly DependencyProperty StyleFileSourceProperty
Properties
Gets or sets a value indicating whether the default style or custom style set via StyleFileSource property should be ignored. When True, the event VectorTileRendering starts firing when tile is about to render and user can customize the rendering process via event args.
public bool IgnoreStyle { get; set; }
Returns the SpatialReference for the map provider.
public override ISpatialReference SpatialReference { get; }
Overrides:
Gets or sets the source to the json style file for the current provider.
public Uri StyleFileSource { get; set; }
Methods
Occurs when vector tile is about to be rendered with no style.
protected void OnNoStyleVectorTileRendering(object sender, NoStyleVectorTileRenderingEventArgs args)
Sets the vector style to the registered map sources.
protected void TransferStylesToMapSources()
Events
Occurs when vector tile is about to be rendered and style is ignored.
public event EventHandler<NoStyleVectorTileRenderingEventArgs> NoStyleVectorTileRendering