Interface IMapPropertyAccessor
Provides methods to read map layer related properties (location, hot spot and so on) from data items.
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public interface IMapPropertyAccessor
Methods
GetDouble(Object, DataMember)
Gets double value from the correspondent attachable property.
Declaration
double GetDouble(object item, DataMember dataMember)
Parameters
System.Object
item
Item to get value from. |
DataMember
dataMember
Data member. |
Returns
System.Double
Double value or NaN. |
GetHotspot(Object)
Gets hotspot of the data item.
Declaration
HotSpot GetHotspot(object item)
Parameters
System.Object
item
Data item to get hotspot for. |
Returns
HotSpot
Hotspot of the data item. |
GetLocation(Object)
Gets geographical location of the data item.
Declaration
Location GetLocation(object item)
Parameters
System.Object
item
Data item to get geographical location for. |
Returns
Location
Location of the data item. |
GetZIndex(Object)
Gets ZIndex of the data item.
Declaration
int GetZIndex(object item)
Parameters
System.Object
item
Item to get ZIndex from. |
Returns
System.Int32
ZIndex of the data item. |
GetZoomRange(Object)
Gets zoom range of the data item.
Declaration
ZoomRange GetZoomRange(object item)
Parameters
System.Object
item
Item to get zoom range from. |
Returns
ZoomRange
Zoom range of the data item. |