如何在使用Google地方信息自动添加的自动填充功能中添加城市,县和州?

时间:2019-04-10 07:47:56

标签: api google-maps

在自动填充小部件中,我只能看到城市名称。我想更改输入的填充方式。当我找到城市时,输入内容现在仅包含城市名称。我想在那儿添加更多信息

城市,县,州

地区:pl

final result

我的代码:

    <input id="test" type="text" />

<script>
  function activePlacesSearch() {
    var options = {
      types: ["(cities)"],
      componentRestrictions: { country: "pl" }
    };
    var input = document.getElementById("test");
    var autocomplete = new google.maps.places.Autocomplete(input, options);
  }
</script>

<script
  type="text/javascript"
  src="https://maps.googleapis.com/maps/api/js?key=API_KEY&libraries=places&region=pl&callback=activePlacesSearch"
></script>

0 个答案:

没有答案