how track location using maps in ASP.NET Core razor page?

Viewed 38

I want in my web app the customer can track live location and know where their order is when it with delivery, in ASP.NET Core Razor page

1 Answers

What you are asking for is how to create an extremely complex service, which is something that is impossible to give a simple answer to. In the case you already have created the complete backend of your live location tracking service, and you are just looking for the visual aspect of your solution: then you should search for a service/library which allows you to add GEO maps to your Blazor pages. The library you use for this should also have an option which allows you to add your own data, such as landmarks for the order locations. An example of a service I found online is Azure Maps. I also found a nuget package called Majorsoft.Blazor.Components.Maps which could be useful.

Related