I would like to display informations from 2 distinct databases "df" and "df3" on folium. When I launch my following code, I only obtain the information from "df" database but do not see "df3". Then, I would like to know if I've missed a specific command for adding multiple and distinct databases on a same map.
import folium
m = folium.Map(location=[20,0], tiles="OpenStreetMap", zoom_start=2)
for i in range(0,len(df)):
folium.Circle(
location=[df.iloc[i]['Lati'], df.iloc[i]['Long']],
popup=df.iloc[i]['S'],
radius=float(df.iloc[i]['[kg]')*15,
color='crimson',
fill=True,
fill_color='crimson'
).add_to(m)
for j in range(0,len(df3)):
folium.CircleMarker(
location=[df3.iloc[j]['lat'], df3.iloc[j]['lon']],
popup=df3.iloc[j]['type'],
radius=5,
color="#3186cc",
fill=True,
fill_color="#3186cc",
).add_to(m)
# Show the map again
m
