Interface IMapSource
Interface which must be implemented by all map sources. Map source provides methods and properties which can be used by tile layer to read images from the specific location.
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public interface IMapSource
Properties
Culture
Gets or sets culture.
Declaration
CultureInfo Culture { get; set; }
Property Value
System.Globalization.CultureInfo
|
Opacity
Gets or sets the opacity factor.
Declaration
double Opacity { get; set; }
Property Value
System.Double
|
UniqueId
Gets unique identifier of the map source.
Declaration
string UniqueId { get; }
Property Value
System.String
|
Methods
Initialize()
Initialize map source.
Declaration
void Initialize()
IsLevelSupported(Int32)
Indicates whether specified tile level is supported.
Declaration
bool IsLevelSupported(int level)
Parameters
System.Int32
level
Tile level. |
Returns
System.Boolean
true if tile level is supported. false otherwise. |
Events
InitializeCompleted
Occurs when initialization of the map source is completed.
Declaration
event EventHandler InitializeCompleted
Event Type
System.EventHandler
|