我有自动完成谷歌地图搜索的这个选项,但是当我添加地点和类型时它不会工作。
var options = {
types:['school'],
componentRestrictions: {
locality:'caloocan',
country: 'PH'}
};
答案 0 :(得分:1)
根据此documentation, componentRestrictions 可用于将结果限制为特定组。目前,您可以使用componentRestrictions按国家/地区进行过滤。该国家/地区必须与两个字符的ISO 3166-1 Alpha-2兼容国家/地区代码一起传递。
以下是文档中的示例
var input = document.getElementById('searchTextField');
var options = {
types: ['(cities)'],
componentRestrictions: {country: 'fr'}
};
autocomplete = new google.maps.places.Autocomplete(input, options);
我认为代码的位置部分会导致错误。因为在文档中声明" 通常只允许一种类型"。
(cities)类型集合指示Places服务 返回与位置或administrative_area3
匹配的结果
尝试检查可用于代码的parameter。