我正在使用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只向我退回带有邮政编码的城市吗?