New question

Question:

Date: 20-03-2019 16:42:27 (In Spanish)

necesito introducir latitud y longitud js a un valor php para introducirlo a un input php como hacerlo? [Unresolved]

<html>
<head>
<title> Geolocalizaci&oacute;n </title>

<!-- Script para mostrar las coordenadas-->
<script type="text/javascript">
if (navigator.geolocation) { //Validar si hay acceso web a la ubicación
navigator.geolocation.getCurrentPosition(mostrarUbicacion); //Obtiene la posición
} else {
alert("¡Error! Este navegador no soporta la Geolocalización.");
}

//Funcion para obtener latitud y longitud
function mostrarUbicacion(position) {
var latitud = position.coords.latitude; //Obtener latitud
var longitud = position.coords.longitude; //Obtener longitud
var div = document.getElementById("coordenadas");
div.innerHTML = "<br>Latitud: " + latitud + "<br>Longitud: " + longitud; //Imprime latitud y longitud
}
</script>

</head>
<body>

<!-- División o secciona para mostrar coordenadas -->
<div id='coordenadas'></div>

</body>
</html>
Tags: Javascript - Javascript JSON - PHP JSON Votes: 1 - Answers: 1 - Views: 7 Share on: Google Facebook Twitter LinkedIn Link
 

Answers:

  • Date: 22-03-2019 10:03:51 Espero y te sirva men

    <!DOCTYPE html>
    <html>
    <body>
    
        <center><p>Presiona el boton para conocer tu Latitud y tu Longitud.</p></center>
    
        <center><button onclick="getLocation()">click</button></center>
    
    <center><p id="demo"></p></center>
    
    <script>
    var x = document.getElementById("demo");
    
    function getLocation() {
      if (navigator.geolocation) {
        navigator.geolocation.getCurrentPosition(showPosition);
      } else { 
        x.innerHTML = "Geolocation is not supported by this browser.";
      }
    }
    
    function showPosition(position) {
      x.innerHTML = "Latitude: " + position.coords.latitude + 
      "<br>Longitude: " + position.coords.longitude;
    }
    </script>
    
    </body>
    </html>
      Votes: 0 - Link answer
     
To actively participate in the community first must authenticate, enter the system.Sign In
 
frjcbbae garagebible.com