We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 938fd80 commit fe74cbfCopy full SHA for fe74cbf
python/jupytergis_lab/jupytergis_lab/notebook/geo_debug.py
@@ -1,4 +1,4 @@
1
-# from jupyterlab import
+from sidecar import Sidecar
2
3
from jupytergis_lab import GISDocument
4
@@ -27,4 +27,7 @@ def geo_debug(geojson_path: str) -> None:
27
# TODO: Activate left and right panel -- not sure how feasible yet from Python.
28
# Also, if using sidecar, right panel can't be displayed. Can we open a
29
# "native" JupyterLab pane instead of using sidecar?
30
- display(doc)
+
31
+ sc = Sidecar(title="JupyterGIS sidecar")
32
+ with sc:
33
+ display(doc)
0 commit comments