gpt4 book ai didi

google-maps - Google Maps API 区域偏向欧洲

转载 作者:行者123 更新时间:2023-12-02 11:50:45 25 4
gpt4 key购买 nike

根据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&amp;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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com