diff --git a/mplleaflet/maptiles.py b/mplleaflet/maptiles.py
index 9d8546b..89349ca 100644
--- a/mplleaflet/maptiles.py
+++ b/mplleaflet/maptiles.py
@@ -3,6 +3,11 @@
'Map data (c) OpenStreetMap contributors'
)
+osm_bw = (
+ 'http://{s}.tiles.wmflabs.org/bw-mapnik/{z}/{x}/{y}.png',
+ '© OpenStreetMap'
+)
+
mapquest_open = (
'http://otile1.mqcdn.com/tiles/1.0.0/map/{z}/{x}/{y}.png',
'Map tiles by MapQuest Data by OpenStreetMap, under CC BY SA.'
@@ -34,8 +39,24 @@
'Tiles © Esri — Esri, HERE, DeLorme, Intermap, increment P Corp., GEBCO, USGS, FAO, NPS, NRCAN, GeoBase, IGN, Kadaster NL, Ordnance Survey, Esri Japan, METI, Esri China (Hong Kong), swisstopo, MapmyIndia, © OpenStreetMap contributors, GIS User Community'
)
+stamen_toner = (
+ 'http://stamen-tiles-{s}.a.ssl.fastly.net/toner/{z}/{x}/{y}.png',
+ 'Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap'
+)
+
+stamen_tonerbackground = (
+ 'http://stamen-tiles-{s}.a.ssl.fastly.net/toner-background/{z}/{x}/{y}.png',
+ 'Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap'
+)
+
+stamen_tonerlite = (
+ 'http://stamen-tiles-{s}.a.ssl.fastly.net/toner-lite/{z}/{x}/{y}.png',
+ 'Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap'
+)
+
+
stamen_wc = (
- 'http://{s}.tile.stamen.com/watercolor/{z}/{x}/{y}.png',
+ 'http://stamen-tiles-{s}.a.ssl.fastly.net/watercolor/{z}/{x}/{y}.png',
'Map tiles by Stamen Design, CC BY 3.0 — Map data © OpenStreetMap'
)
@@ -47,10 +68,14 @@
tiles = {
'osm': osm,
+ 'osm_bw': osm_bw,
'mapquest open': mapquest_open,
'mapbox bright': mapbox_bright,
'thunderforest_landscape': thunderforest_landscape,
'esri_aerial': esri_aerial,
+ 'stamen_toner': stamen_toner,
+ 'stamen_tonerbackground': stamen_tonerbackground,
+ 'stamen_tonerlite': stamen_tonerlite,
'stamen_wc': stamen_wc,
'esri_natgeo': esri_natgeo,
'cartodb_positron': cartodb_positron,