Ragazzi sapete dirmi come fare per farmi avere le variabili javascript latitude e longitude come variabili php. Ho usato ajax ma questo script non mi funzia sapete dirmi il motivo?
ve ne sarei immensamente grato
....
script type="text/javascript">
function caricaLocalizzazione() {
if(navigator.geolocation) {
document.getElementById("status").innerHTML = "HTML5 Geolocation è supportata dal tuo dispositivo.";
var http_header = navigator.userAgent;
document.getElementById("header").innerHTML = http_header;
navigator.geolocation.getCurrentPosition(updateLocation,gestisciErrore);
}
}
function updateLocation(position) {
var latitude = position.coords.latitude;
var longitude = position.coords.longitude;
}
function salvaParametri() {
var xhttp;
if (window.XMLHttpRequest) {
xhttp = new XMLHttpRequest();
} else {
xhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
xhttp.open("GET","LEO_MAPS_geocoding.php?LATITUDINE="+latitude, true);
xhttp.send();
}
</script>
<body onload="caricaLocalizzazione(); salvaParametri()">
...