gpt4 book ai didi

javascript - Google 地理编码器从请求值返回不同的纬度和经度

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

我从给定的纬度和经度获取位置:

getLocationFromCoords(lat, lng) {
var geocoder = new google.maps.Geocoder();
var latLng = new google.maps.LatLng(parseFloat(lat), parseFloat(lng));
geocoder.geocode({
'latLng': latLng
}, function (results, status) {
if (status === google.maps.GeocoderStatus.OK) {
if (typeof results[0].geometry.location != 'undefined') {

console.log(lat, lng);
console.log(results[0].geometry.location.lat(), results[0].geometry.location.lng());

// set the location
} else {
//...
}
});
});
}

问题是 results[0].geometry.location 中的纬度和经度与请求的值不同。上面的代码显示在控制台中:

38.9067339 1.4205983

38.9069681 1.4205133000000387

所以我错过了什么吗?为什么不同的值?

最佳答案

地理编码或反向地理编码不能给出准确的结果。如果您将地址地理编码为 LatLong,您将从 Google 获得最合适和最近的记录。这是正常行为。 Google 的官方示例也有相同的行为。 (不是错误或问题)。

检查这个fiddle ;

function initMap() {
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 8,
center: {lat: 40.731, lng: -73.997}
});
var geocoder = new google.maps.Geocoder;
var infowindow = new google.maps.InfoWindow;

document.getElementById('submit').addEventListener('click', function() {
geocodeLatLng(geocoder, map, infowindow);
});
}

function geocodeLatLng(geocoder, map, infowindow) {
var input = document.getElementById('latlng').value;
var latlngStr = input.split(',', 2);
var latlng = {lat: parseFloat(latlngStr[0]), lng: parseFloat(latlngStr[1])};
geocoder.geocode({'location': latlng}, function(results, status) {
if (status === 'OK') {
if (results[1]) {
map.setZoom(11);
var marker = new google.maps.Marker({
position: latlng,
map: map
});
infowindow.setContent(
results[1].formatted_address + "<br />" + results[1].geometry.location
);
infowindow.open(map, marker);
} else {
window.alert('No results found');
}
} else {
window.alert('Geocoder failed due to: ' + status);
}
});
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
#floating-panel {
position: absolute;
top: 10px;
left: 25%;
z-index: 5;
background-color: #fff;
padding: 5px;
border: 1px solid #999;
text-align: center;
font-family: 'Roboto','sans-serif';
line-height: 30px;
padding-left: 10px;
}
#floating-panel {
position: absolute;
top: 5px;
left: 50%;
margin-left: -180px;
width: 350px;
z-index: 5;
background-color: #fff;
padding: 5px;
border: 1px solid #999;
}
#latlng {
width: 225px;
}
<div id="floating-panel">
<input id="latlng" type="text" value="40.714224,-73.961452">
<input id="submit" type="button" value="Reverse Geocode">
</div>
<div id="map"></div>
<!-- Replace the value of the key parameter with your own API key. -->
<script async defer
src="https://maps.googleapis.com/maps/api/js?callback=initMap">
</script>

关于javascript - Google 地理编码器从请求值返回不同的纬度和经度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38657194/

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