Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tynab/track-map

Real time track map
https://github.com/tynab/track-map

blazor blazor-wasm blazor-webassembly csharp directions-api distance-matrix-api dotnet google-api google-maps google-maps-api map maps-api places-api real-time-track-map routes-api track-map tynab yami-an yami-an-nephilim yan

Last synced: 16 days ago
JSON representation

Real time track map

Awesome Lists containing this project

README

        

# TRACKMAP
An experimental real-time tracking that integrates the robust Google Maps API along with various libraries like Places, Directions, Routes, and Distance Matrix. This project is designed to provide a comprehensive tracking solution for various needs.

## IMAGE DEMO



## VIDEO DEMO
https://github.com/Tynab/TrackMap/assets/99815308/31365237-70c4-4d85-a4f4-027cdb6cbb5e

## CODE DEMO
```c#
public async Task GetCurrentPosition() => Position = (await Geolocation!.GetCurrentPosition(new PositionOptions()
{
EnableHighAccuracy = true,
MaximumAgeTimeSpan = FromHours(1),
TimeoutTimeSpan = FromMinutes(1)
})).Location;
```