This article will demonstrate in simple steps in how to detect the current location of the use from a Windows Phone 8.1 App.
Retrieving the current location in Windows Phone 8.1 is similar to retrieving the location in Windows Phone 8 . The Geolocator class is used to retreive the current location using the GetGeoPositionAsync method.
How to Detect the Current User Location in a Windows Phone 8.1 ?
Follow the below steps to detect the current location of the user from a Windows Phone 8.1 App .
1. Launch Visual Studio 2013 and Open your Windows Phone 8.1 project.
2. Open the Package.appxmanifest file from the project’s solution explorer . In the Package.appxmanifest designer , select the capabilities tab and enable Location capability.
2. Write code to retreive the current location using the Geolocation’s GetGeoPositionAsync method to get the Coordinates and display the latitude and longitude as shown below.
async private void txtLocation_Click(object sender, RoutedEventArgs e) { Geolocator geo = new Geolocator(); Geoposition position = await geo.GetGeopositionAsync(); txtLocation.Text = "Latitude: " + position.Coordinate.Point.Position.Latitude.ToString() + " Longitude: " + position.Coordinate.Point.Position.Longitude; }
Just create an instance of the Geolocator class and invoke the GetGeopositionAsync method . This will return the Geoposition which contains the Coordinates from which the latitude and longitude can be detected.
Also , dont forget to enable the Location services via the Settings –> Location app in your Windows Phone 8.1 (or) Emulator to get the current location .