I'm building an Universal App in WinRT and am able to get the Latitude Longitude of my device using the Geolocator. But for my input I also need the direction (North, South for Latitude and East West for Longitude).
But how do I know if a Latitude or Longitude is within a specific direction? Is there a build-in way, or what would be the calculation to do this?
51.3705 to 51.3705N
6.1724 to 6.1724E
Geoposition GeoPosition = await GeoLocator.GetGeopositionAsync();
double Latitude = GeoPosition.Coordinate.Point.Position.Latitude;
double Longitude = GeoPosition.Coordinate.Point.Position.Longitude;
Kind regards, Niels