Tag: Location
How to Get the Current Location and Pin it on the Map in Windows Phone 8?
Are you looking to find the current location in the Windows Phone using c# and later pin it on to the map? Below is a sample code snippet that demonstrates how to achieve it. How to Get the Current Location and Pin it on the Map in Windows Phone 8? Code to get the Current Location Code to Plot the Location to Map using MapsTask
How to Get the Address based on the Co-Ordinates in Windows Phone 8 ?
Below is a sample code snippet that demonstrates how to get the address of the location based on the co-ordinates in Windows Phone 8. How to Get the Address based on the Co-Ordinates in Windows Phone 8 ? In the below code snippet , the latitude and longitude is fixed . The Google’s API is used to get the location details by passing it to…
Launching the Location Settings App using URI Scheme in Windows Phone 8
Below is a sample code snippet demonstrating on how to launch the Location Settings App via the URI Scheme and LaunchUriAsync method in Windows Phone using C#. Launching the Location Settings App using URI Scheme in Windows Phone 8
Get the Current Location from Windows 8.1 Store App using JavaScript
Below is a sample code snippet demonstrating the procedure on how to get the current user location Windows 8.1 Store App using JavaScript. How to Get the Current Location from Window 8.1 Store App using JavaScript ? Add the button and the span element to the html page where you want to show the current location. <button id=”GetLocation”> Get Location </button> <span id=”locationinformation”></span> Add the…