I am created a vehicle management web application in .NET core. And here we can manage vehicle. And when a user login, he can view full details of his vehicle. And also provide current location of the vehicle in the map. And when the vehicle moves he want to see the moving live update in Map. Is it possible to show the live moving in map. I am checked Azure Map. But I have not get full idea to how to implement Azure map and IoT hub in my application. If anyone used this type of live update in Azure map ?
Do you receive the geo-location data from the device?
If yes, you could have for example as the simplest solution, an Azure function with SignalR service. With Azure function, you consume and get the geolocation data from the IoT Hub. Also, in Azure function, you make the mapping between the device and client/user which should receive this information(if you need that), and then use the SignalR to send that message to that specific user.
In the web app, you also use SIgnalR to receive these specific messages with geo location, and with Azure maps javascript sdk try to show the latest location. For example here by adding a pin(and removing the previous one), or something similar.
I haven't tried this, but this is something I would do as a POC to see how it would work. I hope it helps :)