Interactive Map of Lima, Peru

map
Published

June 30, 2024

Code
from ipyleaflet import Map, Marker, basemaps

# Create the map with corrected configuration for Lima, Peru
m = Map(
    basemap=basemaps.OpenStreetMap.Mapnik,  # Using reliable OpenStreetMap basemap
    center=(-12.0464, -77.0428),  # Lima city coordinates
    zoom=12
)

# Add marker at Lima city center
m.add_layer(Marker(location=(-12.0464, -77.0428)))

# Display the map
m