I'm creating a program with Python that finds the best routes for workers. It display a map with their itinerary and time of itinerary. I have 3 layers, one for each transport car, metro and bike. When i tick or unticked them it display or erase them from the map. I would like to have the same features but with the duration of the run. Like if there was layers inside each one of the first 3 layers.
layerVoiture = folium.FeatureGroup(name=description, overlay=False, control=True)
Some code describing the layer :
layerVoiture.add_to(myMap)
mapTile = folium.TileLayer(tiles='OpenStreetMap') #StamenToner
mapTile.add_to(layerVoiture)
it displays this i would like to make the left part, where the duration of runs are displayed, tickable or untickable
Thanks for your help