Skip to content

Commit 74ace7c

Browse files
authored
feat: Switch basemap default to overlaid (maplibre-controlled) (#993)
<img width="960" height="679" alt="image" src="https://github.com/user-attachments/assets/d1b40cd8-db73-41e6-8962-752df2184423" /> Closes #985
1 parent 5e78565 commit 74ace7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lonboard/basemap.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def __init__(
132132
"interleaved",
133133
"overlaid",
134134
"reverse-controlled",
135-
] = "reverse-controlled",
135+
] = "overlaid",
136136
style: str | CartoStyle = CartoStyle.PositronNoLabels,
137137
) -> None:
138138
"""Create a MapLibre GL JS basemap."""
@@ -144,7 +144,7 @@ def __init__(
144144
"overlaid",
145145
"reverse-controlled",
146146
],
147-
default_value="reverse-controlled",
147+
default_value="overlaid",
148148
).tag(sync=True)
149149
"""The basemap integration mode.
150150
@@ -162,7 +162,7 @@ def __init__(
162162
163163
If you need to have multiple views, you should use this option.
164164
165-
**Default**: `"reverse-controlled"`
165+
**Default**: `"overlaid"`
166166
"""
167167

168168
style = BasemapUrl(CartoStyle.PositronNoLabels).tag(sync=True)

0 commit comments

Comments
 (0)