Changeset 275
- Timestamp:
- 05/22/06 20:22:22 (3 years ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers.js (modified) (1 diff)
- trunk/openlayers/lib/OpenLayers/Ajax.js (added)
- trunk/openlayers/lib/OpenLayers/Tile/WFS.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers.js
r221 r275 39 39 "Rico/Color.js", 40 40 "OpenLayers/Util.js", 41 "OpenLayers/Ajax.js", 41 42 "OpenLayers/Events.js", 42 43 "OpenLayers/Map.js", trunk/openlayers/lib/OpenLayers/Tile/WFS.js
r215 r275 27 27 28 28 this.handlers = new Array(); 29 this.handlers["requestSuccess"] = this. _requestSuccess;29 this.handlers["requestSuccess"] = this.requestSuccess; 30 30 }, 31 31 … … 62 62 // Do it better. 63 63 this.loaded = true; 64 ol.Log.info("request string: " + this.url);65 ol.Application.loadURL(this.url, null, this, success, failure);64 // ol.Log.info("request string: " + this.url); 65 OpenLayers.loadURL(this.url, null, this, success, failure); 66 66 } 67 67 } … … 73 73 */ 74 74 requestSuccess:function(request) { 75 76 75 var doc = request.responseXML; 77 76 78 77 if (!doc || request.fileType!="XML") { 79 doc = ol.Application.parseXMLString(request.responseText);78 doc = OpenLayer.parseXMLString(request.responseText); 80 79 } 81 80 82 var resultFeatures = ol.Application.getNodes(doc, "gml:featureMember");83 ol.Log.info(this.grid.name + " found " +84 resultFeatures.length + " features");81 var resultFeatures = OpenLayers.getNodes(doc, "gml:featureMember"); 82 // ol.Log.info(this.grid.name + " found " + 83 // resultFeatures.length + " features"); 85 84 86 85 //clear old featureList
