Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 660 Bytes

get-started.md

File metadata and controls

33 lines (22 loc) · 660 Bytes

Get Started

This Get Started guide is intended as a quick way to start programming with leafmap. You can try out leafmap by using Goolge Colab (image) without having to install anything on your computer.

Launch Jupyter notebook

conda activate geo
jupyter notebook

Use ipyleaflet plotting backend

import leafmap

Use folium plotting backend

import leafmap.foliumap as leafmap

Create an interactive map

m = leafmap.Map(center=(40, -100), zoom=4)
m

Demo