Skip to content

Commit 01ca1e4

Browse files
authored
Merge pull request #2185 from hansthen/fix_documentation
Fixes the doc build
2 parents b5a164e + 4746d5d commit 01ca1e4

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

docs/user_guide/geojson/geojson_popup_and_tooltip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,4 @@ m
139139
```
140140

141141

142-
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.
142+
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.

folium/plugins/groupedlayercontrol.py

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,18 @@ class GroupedLayerControl(JSCSSMixin, MacroElement):
1212
Parameters
1313
----------
1414
groups : dict
15-
A dictionary where the keys are group names and the values are lists
16-
of layer objects.
17-
e.g. {
18-
"Group 1": [layer1, layer2],
19-
"Group 2": [layer3, layer4]
20-
}
15+
A dictionary where the keys are group names and the values are lists
16+
of layer objects.
17+
e.g. {
18+
"Group 1": [layer1, layer2],
19+
"Group 2": [layer3, layer4]
20+
}
2121
exclusive_groups: bool, default True
22-
Whether to use radio buttons (default) or checkboxes.
23-
If you want to use both, use two separate instances of this class.
22+
Whether to use radio buttons (default) or checkboxes.
23+
If you want to use both, use two separate instances of this class.
2424
**kwargs
2525
Additional (possibly inherited) options. See
2626
https://leafletjs.com/reference.html#control-layers
27-
2827
"""
2928

3029
default_js = [

0 commit comments

Comments
 (0)