Class: OwsOperationsMetadata

OwsOperationsMetadata(element)

Represents an OWS Operations Metadata section of an OGC capabilities document. This object holds as properties all the fields specified in the OWS Operations Metadata section. Most fields can be accessed as properties named according to their document names converted to camel case. For example, "operations".

Constructor

new OwsOperationsMetadata(element)

Constructs an OWS Operations Metadata instance from an XML DOM.
Parameters:
Name Type Description
element Element An XML DOM element representing the OWS Service Provider section.
Source:
Throws:
If the specified XML DOM element is null or undefined.
Type
ArgumentError

Methods

getGetCapabilities() → {OwsOperationsMetadata}

Attempts to find the first OwsOperationsMetadata object named GetCapabilities.
Source:
Returns:
if a matching OwsOperationsMetadata object is found, otherwise null.
Type
OwsOperationsMetadata

getGetTile() → {OwsOperationsMetadata}

Attempts to find the first OwsOperationsMetadata object named GetTile.
Source:
Returns:
if a matching OwsOperationsMetadata object is found, otherwise null.
Type
OwsOperationsMetadata

getOperationMetadataByName() → {OwsOperationsMetadata}

Searches for the OWS Operations Metadata objects for the operation with a name matching the provided name. Returns the first successful match.
Source:
Returns:
of a matching name or null if none was found
Type
OwsOperationsMetadata