Class WmsTileSource
Tiled map source for the WMS.
Inherited Members
Namespace: Telerik.Windows.Controls.Map
Assembly: Telerik.Windows.Controls.DataVisualization.dll
Syntax
public class WmsTileSource : TiledMapSource, IMapSource
Constructors
WmsTileSource(String, Int32, Int32)
Initializes a new instance of the WmsTileSource class.
Declaration
public WmsTileSource(string baseUri, int tileWidth, int tileHeight)
Parameters
System.String
baseUri
Base URI of the WMS server. |
System.Int32
tileWidth
Tile width. |
System.Int32
tileHeight
Tile height. |
Properties
BaseUri
Gets or sets Base URI of the WMS server.
Declaration
public string BaseUri { get; set; }
Property Value
System.String
|
ImageFormat
Gets or sets the image format of the requested tiles.
Declaration
public string ImageFormat { get; set; }
Property Value
System.String
|
Layers
Gets or sets which layers are requested from the WMS server.
Declaration
public string Layers { get; set; }
Property Value
System.String
|
Projection
Gets or sets coordinate Reference System (CRS) or Spatial Reference System (SRS) identifier.
Declaration
public string Projection { get; set; }
Property Value
System.String
|
Version
Gets or sets the version of the requested service.
Declaration
public string Version { get; set; }
Property Value
System.String
|
Methods
GetTile(Int32, Int32, Int32)
Gets the image URI.
Declaration
protected override Uri GetTile(int tileLevel, int tilePositionX, int tilePositionY)
Parameters
System.Int32
tileLevel
Tile level. |
System.Int32
tilePositionX
Tile X. |
System.Int32
tilePositionY
Tile Y. |
Returns
System.Uri
URI of image. |
Overrides
Initialize()
Initialize tile source.
Declaration
public override void Initialize()