私は Google のジオコーダー API から始めており、street_address の location_type のみを返したいと考えています。
唯一の問題は、それを誰に具体的に要求するかわからないことです。ここに私のコードがあります:
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 のみが必要であることを指定するにはどうすればよいですか?