eirexe

Untitled

Oct 22nd, 2013
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. <script>
  8. function getLocation() {
  9. if (navigator.geolocation) {
  10. navigator.geolocation.getCurrentPosition(storePosition);
  11. }
  12. }
  13. function storePosition(position) {
  14. var lat = document.getElementById("latitud");
  15. var lon = document.getElementById("longitud");
  16. if (lat != null && lon != null) {
  17. lat.value = position.coords.latitude;
  18. lon.value = position.coords.longitude;
  19. }
  20. }
  21. </script>
Advertisement
Add Comment
Please, Sign In to add comment