Google 提供了一个很棒的 REST 接口,用于对地址进行地理编码和反向地理编码。我的 API 密钥是有效的,如果我将请求直接输入到浏览器地址中,效果会很好。但是,下面的 jquery 失败了,我不明白为什么。希望你能在这里帮助我。
$.getJSON("http://maps.google.com/maps/geo?q="+ address+"&key="+apiKey+"&sensor=false&output=json",
function(data, textStatus){
console.log(data);
});
此服务的 Google REST 接口文档:http ://code.google.com/apis/maps/documentation/geocoding/index.html