Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
A variable named 'IsBusy' is always a good way to create deadlock. We can't see where else you use it. – Hans Passant Feb 26 at 3:17
please ignore that. I put breakpoints just after the await and in the catch clause, and neither are reached – OpCoder Feb 26 at 3:18

2 Answers

This is strange but GetGeoPositionAsync only returns the current position when the Geolocator is initialized with either MovementThreshold and/or ReportInterval.

Geolocator geolocator = new Geolocator();
geolocator.DesiredAccuracyInMeters = 50;
geolocator.MovementThreshold = 5;
geolocator.ReportInterval = 500;

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
}
share|improve this answer

When are you calling the method to request the geoposition? I found I encountered the same issue when I made the call part of the constructor in my ViewModel.

I was able to fix the problem in my code by adding an OnLoadedCommand and calling the method from there. I've had no further issues since.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.