added WFSCapabilities format. Original patch by tschaub, r=tschaub,me
(closes #1988) git-svn-id: http://svn.openlayers.org/trunk/openlayers@9219 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
31
lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js
Normal file
31
lib/OpenLayers/Format/WFSCapabilities/v1_1_0.js
Normal file
@@ -0,0 +1,31 @@
|
||||
/**
|
||||
* @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.
|
||||
*/
|
||||
initialize: function(options) {
|
||||
OpenLayers.Format.WFSCapabilities.v1.prototype.initialize.apply(
|
||||
this, [options]
|
||||
);
|
||||
},
|
||||
|
||||
CLASS_NAME: "OpenLayers.Format.WFSCapabilities.v1_1_0"
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user