diff --git a/docs/user_guide/geojson/geojson_popup_and_tooltip.md b/docs/user_guide/geojson/geojson_popup_and_tooltip.md index 2f67c85e61..282034a906 100644 --- a/docs/user_guide/geojson/geojson_popup_and_tooltip.md +++ b/docs/user_guide/geojson/geojson_popup_and_tooltip.md @@ -139,4 +139,4 @@ m ``` -The standard `GeoJsonPopup` and `GeoJsonTooltip` classes work well with most geometry types, but have limitations with MultiPoint and other complex multigeometries. For these cases, consider using the `on_each_feature` parameter for custom handling. See the [doc](geojson_advanced_on_each_feature.html) for more information. +The standard `GeoJsonPopup` and `GeoJsonTooltip` classes work well with most geometry types, but have limitations with MultiPoint and other complex multigeometries. For these cases, consider using the `on_each_feature` parameter for custom handling. See the [doc](geojson_advanced_on_each_feature.md) for more information. diff --git a/folium/plugins/groupedlayercontrol.py b/folium/plugins/groupedlayercontrol.py index b2a9fe0a33..11afe5151a 100644 --- a/folium/plugins/groupedlayercontrol.py +++ b/folium/plugins/groupedlayercontrol.py @@ -12,19 +12,18 @@ class GroupedLayerControl(JSCSSMixin, MacroElement): Parameters ---------- 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] - } + 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] + } 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. + Whether to use radio buttons (default) or checkboxes. + If you want to use both, use two separate instances of this class. **kwargs Additional (possibly inherited) options. See https://leafletjs.com/reference.html#control-layers - """ default_js = [