Hi all
Is it possible to get GPS coordinates from the mobile phone to the asp page to the fields Textbox1 and Textbox2
When I press the View button i see the coordinates in Textbox1 and Textbox2 without a map
Thanks
Hi alhakimyyes,
Refer below code.
HTML
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=API_Key"></script> <script type="text/javascript"> function ViewCoOrdinate() { if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(function (p) { var lat = p.coords.latitude; var lng = p.coords.longitude; document.getElementById("txtLat").value = lat; document.getElementById("txtLon").value = lng; }); } else { alert('Geo Location feature is not supported in this browser.'); } return false; } </script> <input type="text" id="txtLat" /> <input type="text" id="txtLon" /> <input type="button" id="btnView" value="View" onclick="return ViewCoOrdinate()" />
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.