Get Geolocation in WinRT 29-12-2015 13:20:33 C# / WinRT 0 Bookmark(s) 194 View(s) public async void ReadGeolocation() { var geolocator = new Geolocator(); var geoLocation = await geolocator.GetGeopositionAsync(); txtLat.Text = geoLocation.Coordinate.Latitude.ToString(); txtLon.Text = geoLocation.Coordinate.Longitude.ToString(); }