From 6431622881deba607e3bdcb640c3e3817c0be0f0 Mon Sep 17 00:00:00 2001 From: Petr Sloup Date: Thu, 17 Sep 2015 10:53:35 +0200 Subject: [PATCH] Use better URL for BNG tiles in reprojection example --- examples/reprojection.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/reprojection.js b/examples/reprojection.js index c65d3aa164..4093e6693f 100644 --- a/examples/reprojection.js +++ b/examples/reprojection.js @@ -58,10 +58,9 @@ var layers = []; layers['bng'] = new ol.layer.Tile({ source: new ol.source.XYZ({ projection: 'EPSG:27700', - url: 'https://googledrive.com/host/0B0bm2WdRuvICflNqUmxEdUNOV0ZRUFQ3cXNXR' + - 'FlOTm9MWmJxSDAxM2V5M1ZJX2lITE9oejA/{z}/{x}/{y}.png', + url: 'http://tileserver.maptiler.com/miniscale/{z}/{x}/{y}.png', crossOrigin: '', - maxZoom: 3 + maxZoom: 6 }) });