Map not displaying in VSCode Jupyter Notebook #707
-
Beta Was this translation helpful? Give feedback.
Answered by
kylebarron
Nov 14, 2024
Replies: 1 comment 1 reply
-
In the second snippet it looks like you're not displaying the Map. You're just storing it as a variable. You need to execute a "cell" with |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
cpalazzi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the second snippet it looks like you're not displaying the Map. You're just storing it as a variable. You need to execute a "cell" with
m
as the last line, or calldisplay(m)
to see the map render.