Historical imagery

Visualize historical satellite imagery
Uncomment the following line to install leafmap if needed.
| # %pip install "leafmap[maplibre]"
|
Import library
| import leafmap.maplibregl as leafmap
|
Add historical imagery layers.
| m = leafmap.Map(center=[-115.318121, 36.317589], zoom=15, sidebar_visible=True)
m.add_wayback_layer(date="2014-02-20")
m.add_wayback_layer(date="2025-09-25")
m
|
Add a time slider to navigate the historical imagery.
| m = leafmap.Map(
center=[-115.318121, 36.317589],
zoom=15,
sidebar_visible=True,
layer_manager_expanded=False,
)
m.add_wayback_time_slider(default_index=-1)
m
|
| import leafmap.leafmap as leafmap
|
Select a date to visualize the historical imagery.
| m = leafmap.Map(
center=[36.317589, -115.318121],
zoom=15,
draw_control=False,
toolbar_control=False,
zoom_control=False,
fullscreen_control=False,
)
m.add_wayback_layers()
m
|
