]> dev.renevier.net Git - syp.git/blob - openlayers/lib/OpenLayers/Protocol/WFS/v1_0_0.js
initial commit
[syp.git] / openlayers / lib / OpenLayers / Protocol / WFS / v1_0_0.js
1 /**
2  * @requires OpenLayers/Protocol/WFS/v1.js
3  * @requires OpenLayers/Format/WFST/v1_0_0.js
4  */
5
6 /**
7  * Class: OpenLayers.Protocol.WFS.v1_0_0
8  * A WFS v1.0.0 protocol for vector layers.  Create a new instance with the
9  *     <OpenLayers.Protocol.WFS.v1_0_0> constructor.
10  *
11  * Inherits from:
12  *  - <OpenLayers.Protocol.WFS.v1>
13  */
14 OpenLayers.Protocol.WFS.v1_0_0 = OpenLayers.Class(OpenLayers.Protocol.WFS.v1, {
15     
16     /**
17      * Property: version
18      * {String} WFS version number.
19      */
20     version: "1.0.0",
21     
22     /**
23      * Constructor: OpenLayers.Protocol.WFS.v1_0_0
24      * A class for giving layers WFS v1.0.0 protocol.
25      *
26      * Parameters:
27      * options - {Object} Optional object whose properties will be set on the
28      *     instance.
29      *
30      * Valid options properties:
31      * featureType - {String} Local (without prefix) feature typeName (required).
32      * featureNS - {String} Feature namespace (optional).
33      * featurePrefix - {String} Feature namespace alias (optional - only used
34      *     if featureNS is provided).  Default is 'feature'.
35      * geometryName - {String} Name of geometry attribute.  Default is 'the_geom'.
36      */
37    
38     CLASS_NAME: "OpenLayers.Protocol.WFS.v1_0_0" 
39 });