diff --git a/src/ol/Tile.js b/src/ol/Tile.js index fe3b715d47..8c72fe0dcc 100644 --- a/src/ol/Tile.js +++ b/src/ol/Tile.js @@ -170,6 +170,7 @@ ol.Tile.createConstructor = function(width, height) { Tile.prototype.createImage = (function() { var img = document.createElement("img"); img.className = "olTile"; + img.style.position = "absolute"; img.style.width = width + "px"; img.style.height = height + "px"; return function() {