Posted on: 8/13/2014 12:25:16 PM | Views : 436

Hi How do I get the longtitude and langtitude from this javascript method? 
How do get to the code behind and display it into a label?
Here is the js:
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyByJmQq7PkPaznZUFsH7AesFNUz82U8iOc&sensor=false"> </script> <script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places"> </script> <script type="text/javascript"> if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(success); } else { alert("Geo Location is not supported on your current browser!"); } function success(position) { var latitude = position.coords.latitude; var longitude = position.coords.longitude; var city = position.coords.locality; var myLatlng = new google.maps.LatLng(latitude, longitude); va ...

Go to the complete details ...