我希望Googles自动填充建议仅列出住宿和位置。我大部分都试图让住宿类型工作,但没有任何建议出现。
当我从autoComplete变量中删除ac_options时,一切正常,但当然没有一个建议被特定类型缩小。
var ac_options = {
types: ['lodging']
};
var input = document.getElementById(this.options.autoCompleteInputId);
var autocomplete = new google.maps.places.Autocomplete(input, ac_options);
//bind to input field
autocomplete.bindTo('bounds', this.gmap);
答案 0 :(得分:5)
我不认为住宿是有效的选择,如下面的链接......
https://developers.google.com/maps/documentation/javascript/places#places_autocomplete
您应该尝试关注......
https://developers.google.com/maps/documentation/javascript/examples/places-queryprediction
代替“附近的披萨”,例如使用“住宿”......:)