我正在使用google geocoder,我想将结果限制在某些国家(例如,我不想在美国搜索)。
使用:
componentRestrictions: {
country: 'de'
}
工作正常,但我想添加更多国家/地区,并尝试传递数组:
componentRestrictions: {
country: ['de','at','ch']
}
但是它给出了一个错误
反正有没有将多个国家/地区加入限制?
谢谢