New to Telerik UI for WPFStart a free 30-day trial

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

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; }

Gets or sets the opacity factor.

C#
double Opacity { get; set; }

Gets unique identifier of the map source.

C#
string UniqueId { get; }

Methods

Initialize map source.

C#
void Initialize()

Indicates whether specified tile level is supported.

C#
bool IsLevelSupported(int level)
Parameters:levelint

Tile level.

Returns:

bool

true if tile level is supported. false otherwise.

Events

Occurs when initialization of the map source is completed.

C#
event EventHandler InitializeCompleted