From d241792000407d5ae8256b799a69b5a346b4aa73 Mon Sep 17 00:00:00 2001 From: Qiusheng Wu Date: Sun, 27 Aug 2023 00:27:32 -0400 Subject: [PATCH] Removed unused control (#523) * Remove unused control * Remove unused draw output control --- leafmap/leafmap.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/leafmap/leafmap.py b/leafmap/leafmap.py index 87fecb9ec4..827c0898c1 100644 --- a/leafmap/leafmap.py +++ b/leafmap/leafmap.py @@ -137,12 +137,6 @@ def __init__(self, **kwargs): self.add(draw_control) self.draw_control = draw_control - draw_output = widgets.Output() - control = ipyleaflet.WidgetControl( - widget=draw_output, position="bottomright" - ) - self.add(control) - def handle_draw(target, action, geo_json): if "style" in geo_json["properties"]: del geo_json["properties"]["style"]