如何在Google Maps API中获取所选国家/地区的所有城镇

时间:2016-09-14 03:44:32

标签: javascript google-maps-api-3 google-places-api

正如我目前所发现的,我可以在Google Place API中找到所选区域的附近位置。我想知道如何在Google Maps或Places API中获取所有选定区域的乡镇/地区?

1 个答案:

答案 0 :(得分:0)

您可以使用与以下内容类似的代码将搜索限制在某个国家/地区。

<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=places&key=your-key"></script>
    <label for="city">
         <input id="city" name="city">
    </label>

    <script>
        var input = document.getElementById('city');
        var options = {
          types: ['(cities)'],
          componentRestrictions: {country: "us"}
         };
        var searchBox = new google.maps.places.SearchBox(input,options);
    </script>

可以找到更多代码here