6

我希望 Google 的自动完成建议仅列出住宿和位置。我一直在努力让住宿类型正常工作,但没有出现任何建议。

当我从 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);
4

1 回答 1

5

根据以下链接,我认为住宿不是有效的选择...

https://developers.google.com/maps/documentation/javascript/places#places_autocomplete

您应该尝试关注...

https://developers.google.com/maps/documentation/javascript/examples/places-queryprediction

在示例中使用“住宿”代替“附近的披萨”... :)

于 2013-05-01T09:57:24.980 回答