我想添加谷歌自动填充功能,但添加多个像这样的城市
function initiali() {
autocomplete = new google.maps.places.Autocomplete(
/** @type {HTMLInputElement}*/
(document.getElementById('autocomplete_add')),
{
types: ['geocode'],
componentRestrictions: {country: ['us','In']}
});
google.maps.event.addListener(autocomplete,
'place_changed',
function() {fillInAddress();}
);
}
google.maps.event.addDomListener(window, 'load', initiali);
但这不起作用。告诉我一些建议我应该如何解决这个问题。