~flavour/sahana-eden/trunk

« back to all changes in this revision

Viewing changes to static/scripts/gis/openlayers/lib/OpenLayers/Format/WFS.js

  • Committer: Fran Boon
  • Date: 2012-01-21 16:10:49 UTC
  • Revision ID: fran@aidiq.com-20120121161049-u2ytuiymn1t312c6
JS upgrade: jQuery, jQueryUI, OpenLayers, Ext, GeoExt

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (c) 2006-2011 by OpenLayers Contributors (see authors.txt for 
 
1
/* Copyright (c) 2006-2012 by OpenLayers Contributors (see authors.txt for 
2
2
 * full list of contributors). Published under the Clear BSD license.  
3
3
 * See http://svn.openlayers.org/trunk/openlayers/license.txt for the
4
4
 * full text of the license. */
20
20
    
21
21
    /** 
22
22
     * Property: layer
 
23
     * {<OpenLayers.Layer>}
23
24
     */
24
25
    layer: null,
25
26
    
26
27
    /**
27
28
     * APIProperty: wfsns
 
29
     * {String}
28
30
     */
29
31
    wfsns: "http://www.opengis.net/wfs",
30
32
    
31
33
    /**
32
34
     * Property: ogcns
 
35
     * {String}
33
36
     */
34
37
    ogcns: "http://www.opengis.net/ogc",
35
38
    
36
 
    /*
 
39
    /**
37
40
     * Constructor: OpenLayers.Format.WFS
38
41
     * Create a WFS-T formatter. This requires a layer: that layer should
39
42
     * have two properties: geometry_column and typename. The parser
45
48
     * options - {Object} 
46
49
     * layer - {<OpenLayers.Layer>} 
47
50
     */
48
 
    
49
51
    initialize: function(options, layer) {
50
52
        OpenLayers.Format.GML.prototype.initialize.apply(this, [options]);
51
53
        this.layer = layer;