Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tynab/track-map
- Owner: Tynab
- Created: 2023-11-23T18:23:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-21T19:32:04.000Z (10 months ago)
- Last Synced: 2024-12-02T08:59:05.953Z (20 days ago)
- Topics: 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
- Language: C#
- Homepage:
- Size: 604 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
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;
```