40 plotly gui
Uncomment the following line to install leafmap if needed.
In [1]:
Copied!
# !pip install leafmap
# !pip install leafmap
In [2]:
Copied!
import leafmap.plotlymap as leafmap
import leafmap.plotlymap as leafmap
Note: For best experience, please use Jupyter notebook. The toolbar GUI is not working very well with JupyterLab at the moment.
In [3]:
Copied!
m = leafmap.Map()
m = leafmap.Map()
In [4]:
Copied!
m.add_basemap("Stamen.Terrain")
m.add_basemap("Stamen.Terrain")
In [5]:
Copied!
m.add_heatmap_demo()
m.add_heatmap_demo()
In [6]:
Copied!
m.add_scatter_plot_demo()
m.add_scatter_plot_demo()
In [7]:
Copied!
m.show()
m.show()
Last update:
2022-03-14