OpenStreetMap not loading in Folium (greyed rectangle)

Viewed 179

Anyone knows why I couldn't load OpenStreetMap map tiles in Folium (I tried Leafmap and IPyLeaflet and still got the same result) over on Jupyter Notebook? I'm pretty sure the problem here is in OpenStreetMap.

enter image description here

1 Answers

Review the network traffic in your browser's developer console to see if the map tiles are returning a 200. If your code renders the grey box and there aren't errors in the console, it seems that indicates your code is correct but the map tiles are failing to load on your network.

enter image description here

Related