How do I visualize geospatial/forge maps in spyder(anaconda 3)


I was able to import folium and created a world map, but the map does not open in plots/or in console. I really need to make it work so I can continue with my learning.
thanks

Hi @Aneera_Sadiq !

I don’t think you’ll be able to display folium maps directly in Spyder. folium generate HTML maps which you could save as a file (with something like map.save('mymap.html'). You may as well run your code directly in a Jupyter notebook where folium maps will be rendered automatically (no need to save them). I recommend you have a look at this geo course that shows how to use folium in a notebook.

1 Like