I try to get map through Folium but only thing I can see is marker on blank page. I'd like to know where is problem lies, in explorer or coding.
map.py
import folium
map = folium.Map(location = [46.20, 6.144], zoom_start=6, tiles="Mapbox Bright")
fg = folium.FeatureGroup(name="My Map")
fg.add_child(folium.Marker(location=[40.12, 10.1], popup="Hi I'am a Marker",
icon=folium.Icon(color='green')))
map.add_child(fg)
map.save("Map1.html")