Once you have exported a bunch of interactive map HTML files with map(ctdf, path = ...), you can call site() to create a simple browsable index for that folder.
site() copies a Quarto index.qmd template into the same directory as your saved map .html files. Render that index.qmd to produce an index.html that links to the maps.
Use site()
require(clusterTrack )
require(clusterTrack.Vis)
out_path = "path/to/your/future_dir"Export many maps (use whatever loop/apply/parallel approach you prefer)
map(x1) |> save_map(path=out_path)
map(x2) |> save_map(path=out_path)
...
map(xn) |> save_map(path=out_path)Copy the Quarto index template into out_path
site(out_path)Then render out_path/index.qmd to get out_path/index.html
