1

我正在我的应用程序中使用 Google 地图。我需要为特定国家(例如印度)设置搜索位置。例如,如果我搜索任何地方(例如巴黎),它应该只在印度搜索。有什么方法可以搜索,而不在 URL 中传递国家名称印度。

4

1 回答 1

0

componentRestrictions 可用于将结果限制为特定组。目前,您可以使用 componentRestrictions 按国家/地区进行过滤。国家必须作为两个字符传递,ISO 3166-1 Alpha-2 兼容国家代码

var input = document.getElementById('searchTextField');
var options = {
   bounds: defaultBounds,
   types: ['establishment']
};

autocomplete = new google.maps.places.Autocomplete(input, options);

来源:https ://developers.google.com/maps/documentation/javascript/places#adding_autocomplete

于 2013-09-10T06:58:51.593 回答