fix for #843 - remove unnecesary url prepping in image tiles

git-svn-id: http://svn.openlayers.org/trunk/openlayers@3768 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
euzuro
2007-07-16 22:08:28 +00:00
parent cc1b0269c9
commit 918b430802
9 changed files with 17 additions and 32 deletions

View File

@@ -88,8 +88,8 @@ OpenLayers.Layer.MapServer = OpenLayers.Class(OpenLayers.Layer.Grid, {
* {<OpenLayers.Tile.Image>} The added OpenLayers.Tile.Image
*/
addTile:function(bounds,position) {
var url = this.getURL(bounds);
return new OpenLayers.Tile.Image(this, position, bounds, url, this.tileSize);
return new OpenLayers.Tile.Image(this, position, bounds,
null, this.tileSize);
},
/**