Track Geoposition 29-12-2015 13:21:23 C# / WinRT 0 Bookmark(s) 188 View(s) public void MyPage() { var geolocator = new Geolocator(); geolocator.PositionChanged += OnGeolocationChanged; } // Called when the geoposition changed private async void OnGeolocationChanged(object sender, PositionChangedEventArgs e) { // Switch to the UI thread await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () => { var coordinate = e.Position.Coordinate; txtLat.Text = coordinate.Latitude; txtLon.Text = coordinate.Longitude; } }