这是我的例子
var url = "http://maps.googleapis.com/maps/api/geocode/json?latlng=" + area.getCenter().lat + "," + area.getCenter().lng + "&sensor=false";
$.getJSON(url, function (data) {
alert("inside json");
//console.log(data);
$.each(data.results[0], function (i, inside) {
console.log(i);
});
//var addr = data.results[0].geometry.location.lat;
});
现在我意识到调用函数根本没有触发....我在这里阅读了其他帖子,他们说当 JSON 格式无效时会发生这种情况,但在这里我从 Google API 获取 JSON,所以我希望它有效格式.... JSON 在这里
http://maps.googleapis.com/maps/api/geocode/json?latlng=27.88,78.08&sensor=false
你能对此发表评论吗?或者我可能犯了一些错误