我从谷歌的地理编码器 API 开始,我只想返回一个 location_type 的 street_address。
唯一的问题是我不知道该具体要求谁。这是我现在的代码:
var geocoder = new google.maps.Geocoder();
geocoder.geocode({'latLng':myLatLng}, function(results, status){
if(status == google.maps.GeocoderStatus.OK){
if(results.length > 0){
console.log(results);
}
else{
alert('nope');
}
}
else{
alert('nope');
}
});
如何指定我只想要 street_address 类型?