I have few services configured on Azure to send me live coordinates of a moving vehicle. I would like to know if there is a tutorial or guide that can help me show live moving vehicle using Vaadin maps.
Do we already have interfaces to support such scenario or is it completely on me to develop or webhook etc. to receive the push events with live coordinates and figure out how to show that on the map.
Just create a map marker representing the car, then change marker latitude/longitude as the car moves. Make sure to do that from Vaadin UI thread (ui.access()) and enable Push, to make sure the updated marker data is sent to the browser.