我已经看到有可能用“静态”将搜索范围限制到某个区域(有组件限制),我也看到了在.NET的发行版3.exp(将是3.14)中API,一个新类google.maps.GeocoderComponentRestrictions已经出现。我还没有看到过应该如何使用这个类。 有没有人有关于此的更多信息?
答案 0 :(得分:6)
这似乎在Google Maps Geocoding API, feature from the API missing in their JS api (?)得到了回答,格式如下:
geocoder.geocode(
{ 'address': address, 'componentRestrictions':{'country':'GB'}},
function(results, status){
...
});
使用GeocoderComponentRestrictions
密钥传递componentRestrictions
个参数。