Getting CivicAddress on Windows Phone 8.1
问题 I'm trying to get the CivicAddress from a Geoposition in Windows Phone 8.1 I've tried using the following code: // Get Current Location var geolocator = new Geolocator(); geolocator.DesiredAccuracyInMeters = 100; var position = await geolocator.GetGeopositionAsync(); // Get Country var country = position.CivicAddress.Country; which throws NullReferenceException as the CivicAddress field is null. I understand that a CivicAddress provider is not provided for Windows 8. I would like to check