# %pip install "leafmap[maplibre]"
import leafmap.maplibregl as leafmap
data = (
"https://github.com/opengeos/datasets/releases/download/vector/hike_gps_trace.csv"
)
m = leafmap.Map(style="3d-hybrid")
m.add_gps_trace(data, radius=5, add_line=True)
m.add_layer_control()
m