1
我從Google的地理編碼器API開始,我只想返回street_address的location_type。Geocoder API僅返回街道地址
唯一的問題,我不知道誰來具體要求。這裏是我的代碼現在:
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?