I have this code to retrieve the current user's address, I need to get the continent information, but it seems to be returning blank. Any idea what am I doing wrong
var geoPos = await geo.GetGeopositionAsync();
var s = await Windows.Services.Maps.MapLocationFinder.FindLocationsAtAsync(geoPos.Coordinate.Point);
var location = s.Locations.FirstOrDefault();
if (location != null)
{
countryCode = location.Address.CountryCode;
}