Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions folium/plugins/groupedlayercontrol.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ class GroupedLayerControl(JSCSSMixin, MacroElement):
----------
groups : dict
A dictionary where the keys are group names and the values are lists
of layer objects. E.g.
{
"Group 1": [layer1, layer2],
"Group 2": [layer3, layer4]
}
of layer objects. For example::

exclusive_groups: bool, default True
{
"Group 1": [layer1, layer2],
"Group 2": [layer3, layer4]
}

exclusive_groups : bool, default True
Whether to use radio buttons (default) or checkboxes.
If you want to use both, use two separate instances of this class.
**kwargs
Expand Down
Loading