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.

Definition

Namespace:Telerik.Windows.Controls.Map

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

cs-api-definition
public interface IMapSource

Properties

CacheStorage

Gets or sets the CacheStorage property.

Declaration

cs-api-definition
ICacheStorage CacheStorage { get; set; }

Property Value

ICacheStorage

Culture

Gets or sets culture.

Declaration

cs-api-definition
CultureInfo Culture { get; set; }

Property Value

CultureInfo

IsTileCachingEnabled

Gets or sets the IsTileCachingEnabled property.

Declaration

cs-api-definition
bool IsTileCachingEnabled { get; set; }

Property Value

bool

Opacity

Gets or sets the opacity factor.

Declaration

cs-api-definition
double Opacity { get; set; }

Property Value

double

UniqueId

Gets unique identifier of the map source.

Declaration

cs-api-definition
string UniqueId { get; }

Property Value

string

Methods

Initialize()

Initialize map source.

Declaration

cs-api-definition
void Initialize()

IsLevelSupported(int)

Indicates whether specified tile level is supported.

Declaration

cs-api-definition
bool IsLevelSupported(int level)

Parameters

level

int

Tile level.

Returns

bool

true if tile level is supported. false otherwise.

Events

InitializeCompleted

Occurs when initialization of the map source is completed.

Declaration

cs-api-definition
event EventHandler InitializeCompleted

Event Value

EventHandler