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
LeafletJS reference mentions a className option for several classes, such as Path (https://leafletjs.com/reference.html#path). The option is used to give elements custom CSS classes. It is implemented in Folium as the class_name keyword argument, but it is currently only available for DivIcon and GeoJsonPopup.
I would like to be able to give custom classes to PolyLine elements (and other BaseMultiLocation elements) via the class_name keyword argument.
Currently, I'm abusing the fill_color argument (and setting fill_opacity=0) as a place to store the classes to be later accessed and properly added by a JS script, but this solution is far from perfect, to put it mildly.
The text was updated successfully, but these errors were encountered:
LeafletJS reference mentions a
className
option for several classes, such asPath
(https://leafletjs.com/reference.html#path). The option is used to give elements custom CSS classes. It is implemented in Folium as theclass_name
keyword argument, but it is currently only available forDivIcon
andGeoJsonPopup
.I would like to be able to give custom classes to
PolyLine
elements (and otherBaseMultiLocation
elements) via theclass_name
keyword argument.Currently, I'm abusing the
fill_color
argument (and settingfill_opacity=0
) as a place to store the classes to be later accessed and properly added by a JS script, but this solution is far from perfect, to put it mildly.The text was updated successfully, but these errors were encountered: