限制Google自动填充功能以返回包含城市,州和邮政编码的结果

时间:2019-02-01 07:46:22

标签: javascript google-places-api googleplacesautocomplete

我正在使用Google自动完成功能。我的目标是向用户显示一些具有城市,州和邮政编码的建议。我正在使用此代码。

var destination = document.getElementById('destination')

var options = {
  types: ['(cities)'],
  componentRestrictions: {
    country: "us"
  }
};

autocomplete(destination, options)

function autocomplete(elem, options) {
  var palceAutocomplete = new google.maps.places.Autocomplete(elem, options);
}

使用此代码,Google有时会向我返回缺少邮政编码的建议。我可以限制google只向我退回带有邮政编码的城市吗?

0 个答案:

没有答案