我正在寻找一个 API。最好是 JSONP API(客户端)
问问题
238 次
1 回答
0
不是 JSONP,但您可以根据需要对其进行操作。我正在使用 Google Map API 客户端。
var lat = 'some value';
var lng = 'some value';
geomap.geocode({'latLng':new google.map.latLng(lat,lng)},function(res){
var tmp = [];
$.each(res,function(i,e){
if(e.address_components.length>=4){
tmp.push(e);
}
});
if(tmp.length>=1){
tmp.sort();
$.each(tmp[0].address_components,function(i,e){
if(e.types=='postal_code') console.log(e.short_name);
if(e.types[0]=='administrative_area_level_1') console.log(e.short_name);
if(e.types[0]=='locality') console.log(e.short_name);
});
}
});
于 2013-03-29T10:23:31.737 回答