ClassMapShapeReaderBase
Represents the MapShapeReaderBase class.
Definition
Namespace:Telerik.Windows.Controls.Map
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public abstract class MapShapeReaderBase : Freezable
Inheritance: objectMapShapeReaderBase
Derived Classes:
Constructors
MapShapeReaderBase()
Declaration
protected MapShapeReaderBase()
Fields
ClearLayerProperty
Identifies the ClearLayer dependency property.
Declaration
public static readonly DependencyProperty ClearLayerProperty
Field Value
DependencyProperty
CoordinateConverterProperty
Identifies the CoordinateConverter dependency property.
Declaration
public static readonly DependencyProperty CoordinateConverterProperty
Field Value
DependencyProperty
ExtendedPropertySetProperty
Identifies the ExtendedPropertySet dependency property.
Declaration
public static readonly DependencyProperty ExtendedPropertySetProperty
Field Value
DependencyProperty
PointTemplateProperty
Identifies the PointTemplateProperty dependency property.
Declaration
public static readonly DependencyProperty PointTemplateProperty
Field Value
DependencyProperty
ToolTipFormatProperty
Identifies the ToolTipFormat dependency property.
Declaration
public static readonly DependencyProperty ToolTipFormatProperty
Field Value
DependencyProperty
ToolTipStyleProperty
Identifies the ToolTipStyle dependency property.
Declaration
public static readonly DependencyProperty ToolTipStyleProperty
Field Value
DependencyProperty
ToolTipTemplateProperty
Identifies the ToolTipTemplate dependency property.
Declaration
public static readonly DependencyProperty ToolTipTemplateProperty
Field Value
DependencyProperty
Properties
ClearLayer
Gets or sets the ClearLayer property. If it is set to true, then the reader clears its information layer after reading.
CoordinateConverter
Gets or sets the CoordinateConverter applied to the reader.
Declaration
public ICoordinateConverter CoordinateConverter { get; set; }
Property Value
ExtendedPropertySet
Gets or sets extended property set which will be used during shape file (KML or ESRI) reading.
Declaration
public ExtendedPropertySet ExtendedPropertySet { get; set; }
Property Value
Remarks
Can be null. In this case extended property set will be created depends on the extended data available in the KML file or in the attributes file (DBF).
Layer
Target information layer.
Declaration
public InformationLayer Layer { get; set; }
Property Value
PointTemplate
Gets or sets content template for the point (reader uses the MapContentControl to represent a point).
Declaration
public DataTemplate PointTemplate { get; set; }
Property Value
DataTemplate
ToolTipFormat
Gets or sets tooltip format. Either ToolTipFormat or ToolTipTemplate should be specified. If both properties are set, then ToolTipTemplate will be used.
ToolTipStyle
Gets or sets the style applied to the toolTip.
Declaration
public Style ToolTipStyle { get; set; }
Property Value
Style
ToolTipTemplate
Gets or sets tooltip content template. Either ToolTipFormat or ToolTipTemplate should be specified. If both properties are set, then ToolTipTemplate will be used. You can bind elements in the tooltip template to extended properties using ExtendedDataConverter and Data property of the ExtendedData object.
Declaration
public DataTemplate ToolTipTemplate { get; set; }
Property Value
DataTemplate
Methods
AddItemsToLayer(Exception, List<FrameworkElement>)
Adds items to the referenced layer.
CreateInstanceCore()
When implemented in a derived class, creates a new instance of the Freezable derived class.
Declaration
protected override Freezable CreateInstanceCore()
Returns
Freezable
Null.
OnPreviewReadCompleted(PreviewReadShapesCompletedEventArgs)
Raises the event.
Declaration
protected virtual void OnPreviewReadCompleted(PreviewReadShapesCompletedEventArgs previewReadCompletedArgs)
Parameters
previewReadCompletedArgs
PreviewReadShapesCompletedEventArgs
The PreviewReadShapesCompletedEventArgs instance containing the event data.
OnReadCompleted(ReadShapesCompletedEventArgs)
Raises the event.
Declaration
protected virtual void OnReadCompleted(ReadShapesCompletedEventArgs eventArgs)
Parameters
eventArgs
The ReadShapesCompletedEventArgs instance containing the event data.
Events
PreviewReadCompleted
Occurs when the reader completes to read shapes.
Declaration
public event PreviewReadShapesCompletedEventHandler PreviewReadCompleted
Event Value
ReadCompleted
Occurs when the reader completes to read shapes and pass them to target information layer.
Declaration
public event ReadShapesCompletedEventHandler ReadCompleted
Event Value