From d628f6b09857aa1aa096eac493b4ff943a673677 Mon Sep 17 00:00:00 2001 From: Andreas Hocevar Date: Tue, 16 Jun 2015 15:21:36 +0200 Subject: [PATCH] Use the tileSize variable --- examples/xyz-esri-4326-512.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/xyz-esri-4326-512.js b/examples/xyz-esri-4326-512.js index 2704012ce4..ac6d8f850b 100644 --- a/examples/xyz-esri-4326-512.js +++ b/examples/xyz-esri-4326-512.js @@ -25,7 +25,7 @@ var map = new ol.Map({ attributions: [attribution], maxZoom: 16, projection: projection, - tileSize: 512, + tileSize: tileSize, tileUrlFunction: function(tileCoord) { return urlTemplate.replace('{z}', (tileCoord[0] - 1).toString()) .replace('{x}', tileCoord[1].toString())