40 plotly gui
Uncomment the following line to install leafmap if needed.
In [ ]:
Copied!
# !pip install leafmap
# !pip install leafmap
In [ ]:
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 [ ]:
Copied!
m = leafmap.Map()
m = leafmap.Map()
In [ ]:
Copied!
m.add_basemap("Esri.WorldTopoMap")
m.add_basemap("Esri.WorldTopoMap")
In [ ]:
Copied!
m.add_heatmap_demo()
m.add_heatmap_demo()
In [ ]:
Copied!
m.add_scatter_plot_demo()
m.add_scatter_plot_demo()
In [ ]:
Copied!
m.show()
m.show()