c# Windows Phone 8.1 How to get Geocoordinate object
问题 I need to get Geocoordinate object with my Longitude and Latitude. Cannot get Geocoordinates by new() https://msdn.microsoft.com/en-us/library/windows/apps/windows.devices.geolocation.geocoordinate One way is for example this code var locator = new Geolocator(); locator.DesiredAccuracyInMeters = 50; var position = await locator.GetGeopositionAsync(); Geocoordinate Coordinate = position.Coordinate; Which gets GPS coordinate. But I need Geocoordinate with my Longitude and Latitude. 回答1: You