From 60ba8931194237cd0fbb4e85b849690085d79251 Mon Sep 17 00:00:00 2001 From: crschmidt Date: Sun, 8 Oct 2006 03:29:36 +0000 Subject: [PATCH] WorldWind layer was broken for the first load. I never noticed because the default example doesn't actually load tiles at the first load. git-svn-id: http://svn.openlayers.org/trunk/openlayers@1694 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Layer/WorldWind.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpenLayers/Layer/WorldWind.js b/lib/OpenLayers/Layer/WorldWind.js index c188a39104..7b15da1054 100644 --- a/lib/OpenLayers/Layer/WorldWind.js +++ b/lib/OpenLayers/Layer/WorldWind.js @@ -42,7 +42,7 @@ OpenLayers.Layer.WorldWind.prototype = addTile:function(bounds,position) { if (this.map.getResolution() <= (this.lzd/512) && this.getZoom() <= this.zoomLevels) { - + var url = this.getURL(bounds); return new OpenLayers.Tile.Image(this, position, bounds, url, this.tileSize); } else {