Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 690 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 690 Bytes

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

trackmap.mp4

CODE DEMO

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