OpenLayers.Format.WMSDescribeLayer

Read SLD WMS DescribeLayer response DescribeLayer is meant to couple WMS to WFS and WCS

Inherits from

Summary
OpenLayers.Format.WMSDescribeLayerRead SLD WMS DescribeLayer response DescribeLayer is meant to couple WMS to WFS and WCS
Properties
defaultVersion{String} Version number to assume if none found.
Constructor
OpenLayers.Format.WMSDescribeLayerCreate a new parser for WMS DescribeLayer responses.
Functions
readRead DescribeLayer data from a string, and return the response.

Properties

defaultVersion

{String} Version number to assume if none found.  Default is “1.1.1”.

Constructor

OpenLayers.Format.WMSDescribeLayer

Create a new parser for WMS DescribeLayer responses.

Parameters

options{Object} An optional object whose properties will be set on this instance.

Functions

read

Read DescribeLayer data from a string, and return the response.  The OGC currently defines 2 formats which are allowed for output, so we need to parse these 2 types

Parameters

data{String} or {DOMElement} data to read/parse.

Returns

{Array} Array of {<LayerDescription>} objects which have:

  • {String} owsType: WFS/WCS
  • {String} owsURL: the online resource
  • {String} typeName: the name of the typename on the service
Base class for versioned formats, i.e.
Close