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