From 2ce08c0ea62d4e6725a0be7e8d0bf0d35767dc1c Mon Sep 17 00:00:00 2001 From: Carson Sievert Date: Fri, 20 Dec 2024 11:31:37 -0600 Subject: [PATCH] Fix failing airmass example (#1805) --- examples/airmass/location.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/airmass/location.py b/examples/airmass/location.py index 5a8cf926c..78fe45740 100644 --- a/examples/airmass/location.py +++ b/examples/airmass/location.py @@ -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: