The title says it all : I can't get Spyder to display a map with folium
.
Here is what I get :
import folium
m = folium.Map(location=[45.5236, -122.6750])
m
No error (and no map), just this :
< folium.folium.Map at 0xd03fcf8 >
m.render() # No idea what .render() it's supposed to do,
# but "render" sounds like maybe it could display the map, so I tried it.
# But it prints nothing
m.render
< bound method LegacyMap.render of < folium.folium.Map object at 0x000000000D03FCF8 > >
Any idea ?
Thanks
(Note : I tried this, with no success)