Skip to content

Commit 0a34be4

Browse files
jtpiomartinRenou
authored andcommitted
Load Stamen tiles over HTTPS (#399)
1 parent a2c383d commit 0a34be4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ipyleaflet/basemaps.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ def __dir__(self):
219219
),
220220
Stamen = Bunch(
221221
Terrain = dict(
222-
url = 'http://stamen-tiles-a.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png',
222+
url = 'https://stamen-tiles-a.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png',
223223
attribution = ''.join([
224224
'Map tiles by <a href="http://stamen.com/">Stamen Design</a>, ',
225225
'under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. ',
@@ -231,7 +231,7 @@ def __dir__(self):
231231
max_zoom = 18
232232
),
233233
Toner = dict(
234-
url = 'http://stamen-tiles-a.a.ssl.fastly.net/toner/{z}/{x}/{y}.png',
234+
url = 'https://stamen-tiles-a.a.ssl.fastly.net/toner/{z}/{x}/{y}.png',
235235
attribution = ''.join([
236236
'Map tiles by <a href="http://stamen.com/">Stamen Design</a>, ',
237237
'under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. ',
@@ -243,7 +243,7 @@ def __dir__(self):
243243
max_zoom = 20
244244
),
245245
Watercolor = dict(
246-
url = 'http://stamen-tiles-a.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png',
246+
url = 'https://stamen-tiles-a.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png',
247247
attribution = ''.join([
248248
'Map tiles by <a href="http://stamen.com/">Stamen Design</a>, ',
249249
'under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. ',

0 commit comments

Comments
 (0)