92 lines
2.3 KiB
JavaScript
92 lines
2.3 KiB
JavaScript
/* Copyright (c) 2006-2012 by OpenLayers Contributors (see authors.txt for
|
|
* full list of contributors). Published under the Clear BSD license.
|
|
* See http://svn.openlayers.org/trunk/openlayers/license.txt for the
|
|
* full text of the license. */
|
|
|
|
/**
|
|
* @requires OpenLayers/Format/WFSCapabilities/v1.js
|
|
*/
|
|
|
|
/**
|
|
* Class: OpenLayers.Format.WFSCapabilities/v1_1_0
|
|
* Read WFS Capabilities version 1.1.0.
|
|
*
|
|
* Inherits from:
|
|
* - <OpenLayers.Format.WFSCapabilities>
|
|
*/
|
|
OpenLayers.Format.WFSCapabilities.v1_1_0 = OpenLayers.Class(
|
|
OpenLayers.Format.WFSCapabilities.v1, {
|
|
|
|
/**
|
|
* Constructor: OpenLayers.Format.WFSCapabilities.v1_1_0
|
|
* Create a new parser for WFS capabilities version 1.1.0.
|
|
*
|
|
* Parameters:
|
|
* options - {Object} An optional object whose properties will be set on
|
|
* this instance.
|
|
*/
|
|
|
|
/**
|
|
* Method: read_cap_DefaultSRS
|
|
*/
|
|
read_cap_DefaultSRS: function(obj, node) {
|
|
var defaultSRS = this.getChildValue(node);
|
|
if (defaultSRS) {
|
|
obj.srs = defaultSRS;
|
|
}
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_ows_OperationsMetadata
|
|
*/
|
|
read_cap_ows_OperationsMetadata: function(capabilities, node) {
|
|
var capability = {
|
|
request: {}
|
|
};
|
|
this.runChildNodes(capability.request, node);
|
|
capabilities.capability = capability;
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_ows_Operation
|
|
*/
|
|
read_cap_ows_Operation: function(request, node) {
|
|
var operation = {
|
|
href: {}
|
|
};
|
|
this.runChildNodes(operation.href, node);
|
|
request[node.getAttribute("name").toLowerCase()] = operation;
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_ows_DCP
|
|
*/
|
|
read_cap_ows_DCP: function(href, node) {
|
|
this.runChildNodes(href, node);
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_ows_HTTP
|
|
*/
|
|
read_cap_ows_HTTP: function(href, node) {
|
|
this.runChildNodes(href, node);
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_ows_Get
|
|
*/
|
|
read_cap_ows_Get: function(href, node) {
|
|
href["get"] = node.getAttribute("xlink:href");
|
|
},
|
|
|
|
/**
|
|
* Method: read_cap_ows_Post
|
|
*/
|
|
read_cap_ows_Post: function(href, node) {
|
|
href["post"] = node.getAttribute("xlink:href");
|
|
},
|
|
|
|
CLASS_NAME: "OpenLayers.Format.WFSCapabilities.v1_1_0"
|
|
|
|
});
|