# %pip install -U leafmap from leafmap import leafmap url = "https://opengeos.org/data/landsat/timeseries.zip" leafmap.download_file(url) m = leafmap.Map() images = "landsat" m.add_time_slider( images, time_interval=0.5, position="bottomright", band=[1, 2, 3], zoom_to_layer=True, ) m