C# Класс SharpMap.Layers.WmsLayer

Web Map Service layer
The WmsLayer is currently very basic and doesn't support automatic fetching of the WMS Service Description. Instead you would have to add the nessesary parameters to the URL, and the WmsLayer will set the remaining BoundingBox property and proper requests that changes between the requests. See the example below.
Наследование: SharpMap.Layers.Layer
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
AddLayer ( string name ) : void

Adds a layer to WMS request

Layer names are case sensitive.

AddStyle ( string name ) : void

Adds a style to the style collection

Clone ( ) : object

Clones the object

GetRequestUrl ( SharpMap box, System size ) : string

Gets the URL for a map request base on current settings, the image size and boundingbox

RemoveAllLayers ( ) : void

Removes all layers

RemoveAllStyles ( ) : void

Removes all styles from the list

RemoveLayer ( string name ) : void

Removes a layer from the layer list

RemoveLayerAt ( int index ) : void

Removes the layer at the specified index

RemoveStyle ( string name ) : void

Removes a style from the collection

RemoveStyleAt ( int index ) : void

Removes a style at specified index

Render ( System g, Map map ) : void

Renders the layer

SetImageFormat ( string mimeType ) : void

Sets the image type to use when requesting images from the WMS server

See the OutputFormats property for a list of available mime types supported by the WMS server

WmsLayer ( string layername, string url ) : System

Initializes a new layer, and downloads and parses the service description

In and ASP.NET application the service description is automatically cached for 24 hours when not specified

WmsLayer ( string layername, string url, System.TimeSpan cachetime ) : System

Initializes a new layer, and downloads and parses the service description

Приватные методы

Метод Описание
GetPreferredMethod ( ) : SharpMap.Web.Wms.Client.WmsOnlineResource
LayerExists ( SharpMap layer, string name ) : bool

Recursive method for checking whether a layername exists

StyleExists ( SharpMap layer, string name ) : bool

Recursive method for checking whether a layername exists

Описание методов

AddLayer() публичный Метод

Adds a layer to WMS request
Layer names are case sensitive.
Throws an exception is an unknown layer is added
public AddLayer ( string name ) : void
name string Name of layer
Результат void

AddStyle() публичный Метод

Adds a style to the style collection
Throws an exception is an unknown layer is added
public AddStyle ( string name ) : void
name string Name of style
Результат void

Clone() публичный Метод

Clones the object
public Clone ( ) : object
Результат object

GetRequestUrl() публичный Метод

Gets the URL for a map request base on current settings, the image size and boundingbox
public GetRequestUrl ( SharpMap box, System size ) : string
box SharpMap Area the WMS request should cover
size System Size of image
Результат string

RemoveAllLayers() публичный Метод

Removes all layers
public RemoveAllLayers ( ) : void
Результат void

RemoveAllStyles() публичный Метод

Removes all styles from the list
public RemoveAllStyles ( ) : void
Результат void

RemoveLayer() публичный Метод

Removes a layer from the layer list
public RemoveLayer ( string name ) : void
name string Name of layer to remove
Результат void

RemoveLayerAt() публичный Метод

Removes the layer at the specified index
public RemoveLayerAt ( int index ) : void
index int
Результат void

RemoveStyle() публичный Метод

Removes a style from the collection
public RemoveStyle ( string name ) : void
name string Name of style
Результат void

RemoveStyleAt() публичный Метод

Removes a style at specified index
public RemoveStyleAt ( int index ) : void
index int Index
Результат void

Render() публичный Метод

Renders the layer
public Render ( System g, Map map ) : void
g System Graphics object reference
map Map Map which is rendered
Результат void

SetImageFormat() публичный Метод

Sets the image type to use when requesting images from the WMS server

See the OutputFormats property for a list of available mime types supported by the WMS server

Throws an exception if either the mime type isn't offered by the WMS /// or GDI+ doesn't support this mime type.
public SetImageFormat ( string mimeType ) : void
mimeType string Mime type of image format
Результат void

WmsLayer() публичный Метод

Initializes a new layer, and downloads and parses the service description
In and ASP.NET application the service description is automatically cached for 24 hours when not specified
public WmsLayer ( string layername, string url ) : System
layername string
url string
Результат System

WmsLayer() публичный Метод

Initializes a new layer, and downloads and parses the service description
public WmsLayer ( string layername, string url, System.TimeSpan cachetime ) : System
layername string
url string Url of service description
cachetime System.TimeSpan Time for caching Service Description (ASP.NET only)
Результат System