Skip to content

Historical imagery

image image image

Visualize historical satellite imagery

Uncomment the following line to install leafmap if needed.

1
# %pip install "leafmap[maplibre]"

Import library

1
import leafmap.maplibregl as leafmap

Add historical imagery layers.

1
2
3
4
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.

1
2
3
4
5
6
7
8
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
1
import leafmap.leafmap as leafmap

Select a date to visualize the historical imagery.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
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

image