I woud like to add a leaflet timeDimension to this kind of data(below).How can I do that please? I am trying to do that since weeks but without success. Any help is appreciated
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"edge_id": 1,
"color": "#377eb8",
"travel_time": [288,299,311,324,338,352,369,387,407],
"times": ["06:00","06:15","06:30","06:45","07:00","07:15","07:30","07:45","08:00",]
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[4,0.157043],
[4,0],
[0,0],
[0,0.157043],
[4,0.157043]
]
]
}
},
For example at 6:00, I would like to have my map with the color function(288), etc. I alread defined this color function.