Geolocation tracker #6
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The TTS regularly reads out "You are being monitored." In addition to saying that, also have it read out your location, in coordinate form. e.g. "You are being monitored. Your current location is 37.321090204132105, -121.87164926193434"
The GeoCoordinateWatcher API in .NET framework 4 doesn't seem to do jack shit so I'm using an IP-based solution for this. It works, but is blocking, so I need to redo it in an asynchronous fashion. Also, I can't use the async/await keyword because the C# version i'm using is too old. Also trying to keep the required .NET version as low as possible, so I don't have the Task version of the WebClient methods available to me; it seems my only option is to use event handlers.