From 364bf64ae20ce84818f992c4538c2e0a499836f8 Mon Sep 17 00:00:00 2001 From: Javier Jimenez Shaw Date: Thu, 17 Aug 2017 13:50:31 +0200 Subject: [PATCH] https does not work properly for tiles.wmflabs.org. Use https instead --- examples/airports.html | 2 +- examples/basic.html | 2 +- examples/options.html | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/airports.html b/examples/airports.html index 4350b2d..c6745d0 100644 --- a/examples/airports.html +++ b/examples/airports.html @@ -28,7 +28,7 @@ ); var osmBw = L.tileLayer( - '//{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png', + 'http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png', {attribution: '© OpenStreetMap contributors'} ); diff --git a/examples/basic.html b/examples/basic.html index abb2c03..6184f86 100644 --- a/examples/basic.html +++ b/examples/basic.html @@ -27,7 +27,7 @@ ); var osmBw = L.tileLayer( - '//{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png', + 'http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png', {attribution: '© OpenStreetMap contributors'} ); diff --git a/examples/options.html b/examples/options.html index 7699a7b..57f2457 100644 --- a/examples/options.html +++ b/examples/options.html @@ -26,7 +26,7 @@ ); var osmBw = L.tileLayer( - '//{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png', + 'http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png', {attribution: '© OpenStreetMap contributors'} );