Class VectorTileMapProvider
Represents a tiled map provider which produces tiles based on vector tile data and style files.
Inherited Members
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public abstract class VectorTileMapProvider : TiledProvider, IDisposable
Constructors
VectorTileMapProvider()
Declaration
protected VectorTileMapProvider()
Fields
StyleFileSourceProperty
Identifies the StyleFileSource dependency property.
Declaration
public static readonly DependencyProperty StyleFileSourceProperty
Field Value
System.Windows.DependencyProperty
|
Properties
IgnoreStyle
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.
Declaration
public bool IgnoreStyle { get; set; }
Property Value
System.Boolean
|
SpatialReference
Returns the SpatialReference for the map provider.
Declaration
public override ISpatialReference SpatialReference { get; }
Property Value
ISpatialReference
|
Overrides
StyleFileSource
Gets or sets the source to the json style file for the current provider.
Declaration
public Uri StyleFileSource { get; set; }
Property Value
System.Uri
|
Methods
OnNoStyleVectorTileRendering(Object, NoStyleVectorTileRenderingEventArgs)
Occurs when vector tile is about to be rendered with no style.
Declaration
protected void OnNoStyleVectorTileRendering(object sender, NoStyleVectorTileRenderingEventArgs args)
Parameters
System.Object
sender
|
NoStyleVectorTileRenderingEventArgs
args
|
TransferStylesToMapSources()
Sets the vector style to the registered map sources.
Declaration
protected void TransferStylesToMapSources()
Events
NoStyleVectorTileRendering
Occurs when vector tile is about to be rendered and style is ignored.
Declaration
public event EventHandler<NoStyleVectorTileRenderingEventArgs> NoStyleVectorTileRendering
Event Type
System.EventHandler<NoStyleVectorTileRenderingEventArgs>
|