IMapSource
Interface
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.
Definition
Namespace:Telerik.Windows.Controls.Map
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
C#
public interface IMapSource
Derived Classes:
Properties
Gets or sets the CacheStorage property.
C#
ICacheStorage CacheStorage { get; set; }
Gets or sets culture.
C#
CultureInfo Culture { get; set; }
Gets or sets the IsTileCachingEnabled property.
C#
bool IsTileCachingEnabled { get; set; }
Methods
Initialize map source.
C#
void Initialize()
Events
Occurs when initialization of the map source is completed.
C#
event EventHandler InitializeCompleted