Skip to content

35 circle markers

image image image

Uncomment the following line to install leafmap if needed.

1
# !pip install leafmap
1
import leafmap

For a list of options for circle markers, see https://ipyleaflet.readthedocs.io/en/latest/api_reference/circle_marker.html

1
2
3
4
5
6
m = leafmap.Map(center=[40, -100], zoom=4)
data = "https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/us_cities.csv"
m.add_circle_markers_from_xy(
    data, x="longitude", y="latitude", radius=10, color="blue", fill_color="black"
)
m