In my Windows Phone 8 app, I am trying to use GetGeopositionAsync on the main page to display some items based on user location.
Calling GetGeopositionAsync does not return within the specified timeout, it doesn't return at all.
The code I am using is simple:
Geolocator geolocator = new Geolocator();
geolocator.DesiredAccuracyInMeters = 50;
Geoposition geoposition = null;
try
{
geoposition = await geolocator.GetGeopositionAsync(
maximumAge: TimeSpan.FromMinutes(5),
timeout: TimeSpan.FromSeconds(10));
}
catch (UnauthorizedAccessException ex)
{
// location services disabled or other error
// user should setup his location
}
The solution I was able to find was to create an async wrapper for GeoCoordinateWatcher which seems to be working fine. But I am not too confident in my solution, I would prefer to use GetGeopositionAsync which looks like the recommended way of getting device position in WP8.
UPDATE: other people are reporting same behavior: http://social.msdn.microsoft.com/forums/en-us/wpdevelop/thread/ff166fac-b423-4428-abd8-610bf0102fc0