From d000ca7b6baa987fdb48c9aa6c938f8896c168f3 Mon Sep 17 00:00:00 2001 From: crschmidt Date: Wed, 3 Oct 2007 01:23:35 +0000 Subject: [PATCH] The WFS moveTo function was not calling addTileMonitoringHooks on new tiles it created after the first one. this means that the layer loadstart/loadend functions were never being called. Fix with a patch by rdewit. (See #1045) git-svn-id: http://svn.openlayers.org/trunk/openlayers@4760 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Layer/WFS.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/OpenLayers/Layer/WFS.js b/lib/OpenLayers/Layer/WFS.js index a8af580fe2..f7bf2cdf4a 100644 --- a/lib/OpenLayers/Layer/WFS.js +++ b/lib/OpenLayers/Layer/WFS.js @@ -255,6 +255,7 @@ OpenLayers.Layer.WFS = OpenLayers.Class( this.tile = null; this.tile = new OpenLayers.Tile.WFS(this, pos, tileBounds, url, tileSize); + this.addTileMonitoringHooks(this.tile); this.tile.draw(); } }