'Click on folium multipolygon overlays and recive a name of active layers
I have many GeoJson layers in the folium map, some are overlapped and some are not, at one point. And I would like to know how I can click on the map and receive a popup (probably) with the name of the layer that exists at this point of the click.
It is area of specie distribution, and I want to click and know what species are there.
I try:
import geopandas as gpd
import folium
import webbrowser
maptotal=folium.Map()
#loading
sp1 = gpd.read_file('sp1.json', driver='GeoJSON')
sp2 = gpd.read_file('sp2.json', driver='GeoJSON')
sp3 = gpd.read_file('sp3.json', driver='GeoJSON')
sp4 = gpd.read_file('sp4.json', driver='GeoJSON')
#Try to create popup
for index, in sp1.iterrows():
mapsp1 = folium.features.GeoJson(sp1.geometry)
popup=folium.Popup("""Specie one""")
popup.add_to(mapsp1)
mapsp1.add_to(maptotal)
for index, in sp2.iterrows():
mapsp2 = folium.features.GeoJson(sp2.geometry)
popup=folium.Popup("""Specie two""")
popup.add_to(mapsp2)
mapsp2.add_to(maptotal)
for index, in sp3.iterrows():
mapsp3 = folium.features.GeoJson(sp3.geometry)
popup=folium.Popup("""Specie three""")
popup.add_to(mapsp3)
mapsp3.add_to(maptotal)
for index, in sp4.iterrows():
mapsp4 = folium.features.GeoJson(sp4.geometry)
popup=folium.Popup("""Specie four""")
popup.add_to(mapsp4)
mapsp4.add_to(maptotal)
#create layers
principal=folium.plugins.MarkerCluster(control=False)
maptotal.add_child(principal)
camadasub1=plugins.FeatureGroupSubGroup(camadaprincipal,'sp1')
maptotal.add_child(camadasub1)
camadasub2=plugins.FeatureGroupSubGroup(camadaprincipal,'sp2')
maptotal.add_child(camadasub2)
camadasub3=plugins.FeatureGroupSubGroup(camadaprincipal,'sp3')
maptotal.add_child(camadasub3)
camadasub4=plugins.FeatureGroupSubGroup(camadaprincipal,'sp4')
maptotal.add_child(camadasub4)
folium.GeoJson('sp1.json').add_to(camadasub1)
folium.GeoJson('sp2.json').add_to(camadasub2)
folium.GeoJson('sp3.json').add_to(camadasub3)
folium.GeoJson('sp4.json').add_to(camadasub4)
folium.LayerControl().add_to(maptotal)
#save and open
maptotal.save("map.html")
webbrowser.open("map.html")
My idea of result:
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|