如何在Google Places API中查询餐馆的自动填充功能

时间:2016-09-22 12:38:19

标签: google-places-api

我正在寻找一个示例查询,该查询返回一个仅包含餐馆的列表,用作自动完成,给定一段带或不带坐标位置的部分文本。

我看到了一个使用地理编码的示例,但这会返回物理位置。

我尝试使用type = establishment,但我得到的结果不是餐馆。

2 个答案:

答案 0 :(得分:0)

试试这段代码。您可以随时查看google places api的文档以获取此类问题。支持的类型列在here

    <label for="restaurant">
         <input id="restaurant" name="restaurant">
    </label>
    <script>
        var input = document.getElementById('restaurant');
        var options = {
            types: ['(restaurant)']
        };
        var searchBox = new google.maps.places.SearchBox(input,options);
    </script>

答案 1 :(得分:0)

您似乎对此功能请求感兴趣:Issue 3538: Allow Places types in autocomplete