~zack-krejci/healthscapes-dsp/trunk

« back to all changes in this revision

Viewing changes to static/scripts/OpenLayers/lib/OpenLayers/Protocol/WFS/v1_0_0.js

  • Committer: Zack
  • Date: 2011-02-28 21:37:27 UTC
  • Revision ID: zack@zack-laptop-20110228213727-tqig2kgx9vz0uhq9
Updated pages

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Copyright (c) 2006-2010 by OpenLayers Contributors (see authors.txt for 
 
2
 * full list of contributors). Published under the Clear BSD license.  
 
3
 * See http://svn.openlayers.org/trunk/openlayers/license.txt 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
});