#1.2.1 Make map with street info
latitude = 59.9133301
longitude = 10.7389701
map_oslo = folium.Map(location=[latitude, longitude], zoom_start=10)
# add markers to map
for lat, lng, street , in zip(streetData['MidLatitude'], streetData['MidLongitude'],
streetData['Street']):
#Create pop-up label to display
label = '{}'.format(street)#neighborhood, borough originally
label = folium.Popup(label, parse_html=True)
folium.CircleMarker(
[lat, lng],
radius=2,#Change radius of circle marker
popup=label,
color='blue',
fill=False,
#fill_color='#3186cc',
fill_opacity=0.7,
parse_html=False).add_to(map_oslo)
map_oslo