88 circle markers
Uncomment the following line to install geemap if needed.
In [ ]:
Copied!
# !pip install geemap
# !pip install geemap
In [ ]:
Copied!
import geemap.foliumap as geemap
import geemap.foliumap as geemap
If you are using a recently implemented geemap feature that has not yet been released to PyPI or conda-forge, you can uncomment the following line to install the development version from GitHub.
In [ ]:
Copied!
# geemap.update_package()
# geemap.update_package()
For a list of options for circle markers, see https://ipyleaflet.readthedocs.io/en/latest/api_reference/circle_marker.html
In [ ]:
Copied!
m = geemap.Map()
data = "https://raw.githubusercontent.com/gee-community/geemap/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
m = geemap.Map()
data = "https://raw.githubusercontent.com/gee-community/geemap/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