通过住宿和地点类型自动填写地点

时间:2013-04-23 08:59:21

标签: google-maps autocomplete google-places-api

我希望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);

1 个答案:

答案 0 :(得分:5)

我不认为住宿是有效的选择,如下面的链接......

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

您应该尝试关注......

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

代替“附近的披萨”,例如使用“住宿”......:)