updates so WFS *should* work with new tiling algorithm

git-svn-id: http://svn.openlayers.org/trunk/openlayers@1154 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
euzuro
2006-08-09 06:24:28 +00:00
parent bc6b2e690d
commit 5d64ebdf94
2 changed files with 20 additions and 9 deletions

View File

@@ -134,14 +134,12 @@ OpenLayers.Layer.WFS.prototype =
var urls = new Array();
//add standard URL
urls.push( this.getFullRequestString( { BBOX:bounds.toBBOX() }) );
urls.push( this.getFullRequestString() );
if (this.urls != null) {
// if there are more urls, add them.
for(var i=0; i < this.urls.length; i++) {
var newUrl = this.getFullRequestString( { BBOX:bounds.toBBOX() },
this.urls[i] );
urls.push(newUrl);
urls.push( this.getFullRequestString(null, this.urls[i]) );
}
}