34 add points from xy

Uncomment the following line to install leafmap if needed.
| import leafmap
import pandas as pd
|
| # leafmap.update_package()
|
Using a CSV file containing xy coordinates
| m = leafmap.Map()
data = "https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/us_cities.csv"
m.add_points_from_xy(data, x="longitude", y="latitude")
m
|
Using a Pandas DataFrame containing xy coordinates.
| m = leafmap.Map()
data = "https://raw.githubusercontent.com/opengeos/leafmap/master/examples/data/us_cities.csv"
df = pd.read_csv(data)
m.add_points_from_xy(df, x="longitude", y="latitude")
m
|