Acabo de empezar a utilizar la API de geocodificación de mapQuest y he creado un código para buscar direcciones. El siguiente código alerta "OK" pero no puedo alertar a los (lat, lon) coords, incluso he intentado con tantas maneras diferentes. ¿Puedes decirme qué está mal? ¿Significa esto que las coordenadas no se devuelven realmente? Las alertas sobre las coordenadas ni siquiera son alertas "no definidas"...
Gracias
el código :
function codeAddress(){
var ad = document.getElementById("address");//get input from form
$.ajax({
type: "POST",
url: "http://www.mapquestapi.com/geocoding/v1/address?key=Fmjtd******&outFormat=json&inFormat=json&json={location:"+ad+",options:{maxResults:1}}", success: function(response) {
alert("OK");//alerts OK, but NONE of the followinng
alert(response.results[0].locations[0].location.street);
alert(response.results[0].locations[0].location.latLng.lat);
alert(response.results[0].latLng.lat);
alert(response.results[0].location.latLng.lat);
alert(responce.results[0].locations[0].latLng);
}})
}
//this is the html form
<input id="address" type="textbox">
<input type="button" value="Encode" onClick="codeAddress()">