作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据Google Maps API docs您可以使用区域代码对结果进行偏差,指定为 IANA language region subtag 。查看第二个链接时,您会看到欧洲有一个区域子标签 EU,该子标签于 2009 年 7 月 29 日添加。然而,下面的 2 个代码示例似乎都没有遵循这种偏差。当我对“Hoboken”进行地理编码时,我得到的是美国的 Hobken,而不是比利时和欧盟的 Hobken。
geocoder.geocode( { 'address': address, 'region': 'EU'}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
console.log(results[0].geometry.location);
}
else {
alert('Geocode was not successful for the following reason: ' + status);
}
});
或在 URL 中使用区域参数:
<script src="http://maps.google.com/maps/api/js?sensor=false&region=EU"></script>
最佳答案
改用组件限制,这些限制将搜索限制为指定的参数。
地理编码器组件限制定义如下:
componentRestrictions: {
country: 'BE'
}
所以你的电话现在是:
geocoder.geocode( { 'address': address, 'region': 'EU', componentRestrictions: {
country: 'BE'
}
}, function(results, status) {
if (status == google.maps.GeocoderStatus.OK) {
console.log(results[0].geometry.location);
}
else {
alert('Geocode was not successful for the following reason: ' + status);
}
});
更多信息请点击:https://developers.google.com/maps/documentation/javascript/reference#GeocoderComponentRestrictions
关于google-maps - Google Maps API 区域偏向欧洲,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23543172/
我正在尝试从 attoparsec 解构 IResult monad分成几 block 。这是IResult data IResult t r = Fail t [String] String
我是一名优秀的程序员,十分优秀!