限制对国家/地区的地理编码

时间:2013-07-31 08:06:07

标签: google-maps-api-3 google-geocoder

我已经看到有可能用“静态”将搜索范围限制到某个区域(有组件限制),我也看到了在.NET的发行版3.exp(将是3.14)中API,一个新类google.maps.GeocoderComponentRestrictions已经出现。我还没有看到过应该如何使用这个类。 有没有人有关于此的更多信息?

1 个答案:

答案 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个参数。