You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for lat,lan,name,elev in zip(df['LAT'],df['LON'],df['NAME'],df['ELEV']):
folium.Marker(location=[lat,lan],popup = name, icon= folium.Icon(color='green' if elev in range(1001,1999) else 'orange' if elev in range(2000,2999) else 'red',icon = 'cloud')).add_to(map4)