From 0cffcc67fab0335f4c0b1c10bad853a293ac2bf4 Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Thu, 23 May 2024 22:01:26 -0400 Subject: [PATCH] Fix velocity display_options bug --- python/ipyleaflet/ipyleaflet/velocity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ipyleaflet/ipyleaflet/velocity.py b/python/ipyleaflet/ipyleaflet/velocity.py index 1e277b7af..3947a5866 100644 --- a/python/ipyleaflet/ipyleaflet/velocity.py +++ b/python/ipyleaflet/ipyleaflet/velocity.py @@ -69,7 +69,7 @@ class Velocity(Layer): "displayEmptyString": "No velocity data", "speedUnit": "kt", } - ).tag(sync=True) + ).tag(sync=True, o=True) min_velocity = Float(0).tag(sync=True, o=True) max_velocity = Float(10).tag(sync=True, o=True) velocity_scale = Float(0.005).tag(sync=True, o=True)