Changeset 1867
- Timestamp:
- 11/15/06 16:54:35 (2 years ago)
- Files:
-
- sandbox/vector/lib/OpenLayers/Parser/GML.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/vector/lib/OpenLayers/Parser/GML.js
r1851 r1867 25 25 var newArguments = arguments; 26 26 27 // pgiraud : should not have to be initialized 28 this.featureCollection = []; 29 27 30 var featureNodes = OpenLayers.Ajax.getElementsByTagNameNS(xmlNode, "http://www.opengis.net/gml","gml", "featureMember"); 28 31 for (var i=0; i < featureNodes.length; i++) { … … 36 39 37 40 destroy: function() { 41 this.featureCollection = []; 38 42 OpenLayers.Parser.prototype.destroy.apply(this, arguments); 39 43 },
