Skip to content

Commit

Permalink
Load Stamen tiles over HTTPS (jupyter-widgets#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio authored and martinRenou committed Jul 3, 2019
1 parent a2c383d commit 0a34be4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ipyleaflet/basemaps.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def __dir__(self):
),
Stamen = Bunch(
Terrain = dict(
url = 'http://stamen-tiles-a.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png',
url = 'https://stamen-tiles-a.a.ssl.fastly.net/terrain/{z}/{x}/{y}.png',
attribution = ''.join([
'Map tiles by <a href="http://stamen.com/">Stamen Design</a>, ',
'under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. ',
Expand All @@ -231,7 +231,7 @@ def __dir__(self):
max_zoom = 18
),
Toner = dict(
url = 'http://stamen-tiles-a.a.ssl.fastly.net/toner/{z}/{x}/{y}.png',
url = 'https://stamen-tiles-a.a.ssl.fastly.net/toner/{z}/{x}/{y}.png',
attribution = ''.join([
'Map tiles by <a href="http://stamen.com/">Stamen Design</a>, ',
'under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. ',
Expand All @@ -243,7 +243,7 @@ def __dir__(self):
max_zoom = 20
),
Watercolor = dict(
url = 'http://stamen-tiles-a.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png',
url = 'https://stamen-tiles-a.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png',
attribution = ''.join([
'Map tiles by <a href="http://stamen.com/">Stamen Design</a>, ',
'under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. ',
Expand Down

0 comments on commit 0a34be4

Please sign in to comment.