Google Maps API V3 の autocompleteservice を使用して、カスタムのオートコンプリート入力を作成しています。基本的に、この関数を呼び出して都市の提案を取得します。
function getPlaces(st){
gService.getQueryPredictions({input:st,types:['geocode']},function(predictions,status) {
if(status != google.maps.places.PlacesServiceStatus.OK) return false;
for(var i = 0, prediction; prediction = predictions[i]; i++){
console.log(prediction);
}
return predictions;
});
}
これはうまく機能していますが、都市に関連付けられた郵便番号を取得したいと考えています。V2 API と同様に、この例を参照してください。
タイプオプションを都市に変更しようとしましたが、結果は同じです。それを行う方法はありますか?