Skip to content
Merged
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
3 changes: 1 addition & 2 deletions examples/airmass/location.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ def location_server(
input: Inputs, output: Outputs, session: Session, *, wrap_long: bool = True
):
map = L.Map(center=(0, 0), zoom=1, scoll_wheel_zoom=True)
with reactive.isolate():
marker = L.Marker(location=(input.lat() or 0, input.long() or 0))
marker = L.Marker(location=(0, 0))

with reactive.isolate(): # Use this to ensure we only execute one time
if input.lat() is None and input.long() is None:
Expand Down
Loading