More details manually observed while reviewing documentation.

This commit is contained in:
Xavier Mamano
2012-01-07 23:33:50 +01:00
parent 107edcf0e5
commit f64dea59e8
2 changed files with 7 additions and 5 deletions

View File

@@ -20,20 +20,23 @@ OpenLayers.Format.WFS = OpenLayers.Class(OpenLayers.Format.GML, {
/**
* Property: layer
* {<OpenLayers.Layer>}
*/
layer: null,
/**
* APIProperty: wfsns
* {String}
*/
wfsns: "http://www.opengis.net/wfs",
/**
* Property: ogcns
* {String}
*/
ogcns: "http://www.opengis.net/ogc",
/*
/**
* Constructor: OpenLayers.Format.WFS
* Create a WFS-T formatter. This requires a layer: that layer should
* have two properties: geometry_column and typename. The parser
@@ -45,7 +48,6 @@ OpenLayers.Format.WFS = OpenLayers.Class(OpenLayers.Format.GML, {
* options - {Object}
* layer - {<OpenLayers.Layer>}
*/
initialize: function(options, layer) {
OpenLayers.Format.GML.prototype.initialize.apply(this, [options]);
this.layer = layer;