We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calling folium.Map() with the paramater tiles set to 'Stamen Toner', ' Stamen Terrain', or 'Stamen Watercolor' produces a blank leaflet.
The code to reproduce the issue is the following with tiles = 'Stamen Toner' case:
import folium
world_map = folium.Map(location=[56.130366, -106.346771], zoom_start=4, tiles = 'Stamen Toner') world_map
The produced map is the following screenshot (blank map)
No warning nor error is printed.
The text was updated successfully, but these errors were encountered:
The Stamen tilesets have moved to Stadia. Also, they no longer appear to be usable without API key.
They are now refered to by "Stadia Stamen Toner" in xyzservices. So in your example you can do:
"Stadia Stamen Toner"
folium.Map(location=[56.130366, -106.346771], zoom_start=4, tiles = "Stadia Stamen Toner")
But you'll notice you'll need an API key. We can't help with that unfortunately.
Sorry, something went wrong.
No branches or pull requests
Calling folium.Map() with the paramater tiles set to 'Stamen Toner', ' Stamen Terrain', or 'Stamen Watercolor' produces a blank leaflet.
The code to reproduce the issue is the following with tiles = 'Stamen Toner' case:
import folium
world_map = folium.Map(location=[56.130366, -106.346771], zoom_start=4, tiles = 'Stamen Toner')
world_map
The produced map is the following screenshot (blank map)

No warning nor error is printed.
The text was updated successfully, but these errors were encountered: