I am working on creating a timeline/timeslider to showcase images captured by IP cameras. The search results for these images will be saved as events in a JSON object with details such as image capture datetime and image source:
{
{
id:"1",
startDate: "Date and time of the capture",
url: "Image source URL"
},
{
id:"2",
startDate: "Date and time of the capture",
url: "Image source URL"
}
...
}
Using this JSON object, I aim to construct a dynamic timeline/timeslider with playback functionality. While I came across a plugin that fits my requirements perfectly, it is designed to work only with GeoJSON objects for replaying GPS tracks.
leafletplayback
Does anyone have suggestions on how to create a similar timeline/timeslider for the aforementioned purpose?