2 * @requires OpenLayers/Protocol/WFS/v1.js
3 * @requires OpenLayers/Format/WFST/v1_1_0.js
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.
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
16 * - <OpenLayers.Protocol.WFS.v1>
18 OpenLayers.Protocol.WFS.v1_1_0 = OpenLayers.Class(OpenLayers.Protocol.WFS.v1, {
22 * {String} WFS version number.
27 * Constructor: OpenLayers.Protocol.WFS.v1_1_0
28 * A class for giving layers WFS v1.1.0 protocol.
31 * options - {Object} Optional object whose properties will be set on the
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'.
42 CLASS_NAME: "OpenLayers.Protocol.WFS.v1_1_0"