m = folium.Map(location=[39.735,-84.15],zoom_start=10.5)
for idx, row in gdf1.iterrows():
folium.Marker([row['Latitude'], row['Longitude']], popup=row['Name'],
icon=folium.Icon(color=row['Colors'])).add_to(m)
This code shows the following output
I want to make a legend that will say the blue marker represent 'other hospitals' and the red marker represent 'dayton'