Geolocation tracker #6

Closed
opened 2021-02-17 19:19:20 +00:00 by scoliono · 1 comment
scoliono commented 2021-02-17 19:19:20 +00:00 (Migrated from github.com)

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 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"
scoliono commented 2021-02-17 19:20:30 +00:00 (Migrated from github.com)

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.

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.
Sign in to join this conversation.
No description provided.