Assign my own vehicles speed to map and use it as a traffic data

I have my own vehicles which connected with my server using mobile app which send speed every 1 second as geojson data like this
{
‘vehicleId’:1,
‘current’:{
‘type’: ‘Feature’,
‘geometry’: {
‘type’: ‘Point’,
‘coordinates’: [
30.1,
32.2
],
‘time’: ‘’,
‘speed’:130.2
},
‘properties’: {
‘name’: ‘Dinagat Islands’
}
}
}
I would like to assign these data to my own map and use their as a historical data

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.