Project

General

Profile

Download (1.45 KB) Statistics
| Branch: | Tag: | Revision:
1
/* Copyright (c) 2006-2013 by OpenLayers Contributors (see authors.txt for
2
 * full list of contributors). Published under the 2-clause BSD license.
3
 * See license.txt in the OpenLayers distribution or repository for the
4
 * full text of the license. */
5

    
6
/**
7
 * @requires OpenLayers/Protocol/WFS/v1.js
8
 * @requires OpenLayers/Format/WFST/v1_0_0.js
9
 */
10

    
11
/**
12
 * Class: OpenLayers.Protocol.WFS.v1_0_0
13
 * A WFS v1.0.0 protocol for vector layers.  Create a new instance with the
14
 *     <OpenLayers.Protocol.WFS.v1_0_0> constructor.
15
 *
16
 * Inherits from:
17
 *  - <OpenLayers.Protocol.WFS.v1>
18
 */
19
OpenLayers.Protocol.WFS.v1_0_0 = OpenLayers.Class(OpenLayers.Protocol.WFS.v1, {
20
    
21
    /**
22
     * Property: version
23
     * {String} WFS version number.
24
     */
25
    version: "1.0.0",
26
    
27
    /**
28
     * Constructor: OpenLayers.Protocol.WFS.v1_0_0
29
     * A class for giving layers WFS v1.0.0 protocol.
30
     *
31
     * Parameters:
32
     * options - {Object} Optional object whose properties will be set on the
33
     *     instance.
34
     *
35
     * Valid options properties:
36
     * featureType - {String} Local (without prefix) feature typeName (required).
37
     * featureNS - {String} Feature namespace (optional).
38
     * featurePrefix - {String} Feature namespace alias (optional - only used
39
     *     if featureNS is provided).  Default is 'feature'.
40
     * geometryName - {String} Name of geometry attribute.  Default is 'the_geom'.
41
     */
42
   
43
    CLASS_NAME: "OpenLayers.Protocol.WFS.v1_0_0" 
44
});
(2-2/3)