1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| function getXhr(){
var xhr = null;
if(window.XMLHttpRequest) // Firefox et autres
xhr = new XMLHttpRequest();
else if(window.ActiveXObject){ // Internet Explorer
try {
xhr = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
xhr = new ActiveXObject("Microsoft.XMLHTTP");
}
}
else { // XMLHttpRequest non supporté par le navigateur
alert("Votre navigateur ne supporte pas les objets XMLHTTPRequest...");
xhr = false;
}
return xhr;
}
/**
* Méthode qui sera appelée pour remplir le champ cache
*/
function go(long,lat,champ){
var xhr = getXhr();
var varURL="./srtm3";
var varForm=lat="lat="+lat+"&lng="+long+"&style=full";
xhr.onreadystatechange = function(){
if(xhr.readyState == 4 ){
champ.value=xhr.responseText;
}
}
xhr.open("GET",varURL,true);
xhr.send(varForm);
} |
Partager