在自动填充小部件中,我只能看到城市名称。我想更改输入的填充方式。当我找到城市时,输入内容现在仅包含城市名称。我想在那儿添加更多信息
城市,县,州
地区:pl
我的代码:
<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®ion=pl&callback=activePlacesSearch"
></script>