我有附近的搜索地图,在此地图页面的每次打开中,它都会返回当前位置,现在当我通过坐标获取当前位置时,我想将其反向地理编码为地址名称,问题是我修改了源代码:https://developers-dot-devsite-v2-prod.appspot.com/maps/documentation/javascript/examples/geocoding-reverse
与
<script>
function getPosition() {
navigator.geolocation.getCurrentPosition(position => {
currentLatLon = [position.coords.latitude, position.coords.longitude];
infowindow = new google.maps.InfoWindow();
map = new google.maps.Map(
document.getElementById('map'), {
center: new google.maps.LatLng(...currentLatLon),
zoom: 20
});
var geocoder = new google.maps.Geocoder();
service = new google.maps.places.PlacesService(map);
document.getElementById("curr").innerHTML=currentLatLon;
document.getElementById("address").value=currentLatLon;
geocodeLatLng(geocoder,map,infowindow);
});
}
function geocodeLatLng(geocoder, map, infowindow) {
var input = document.getElementById('curr').value;
var latlngStr = input.split(',');
var latlng = {lat: parseFloat(latlngStr[0]), lng: parseFloat(latlngStr[1])};
geocoder.geocode({'location': latlng}, function(results, status) {
if (status === 'OK') {
if (results[0]) {
map.setZoom(11);
var marker = new google.maps.Marker({
position: latlng,
map: map
});
infowindow.setContent(results[0].formatted_address);
infowindow.open(map, marker);
} else {
window.alert('No results found');
}
} else {
window.alert('Geocoder failed due to: ' + status);
}
});
}
</script>
这应该返回地图中的地名,就像我从上面复制的源代码一样https://developers-dot-devsite-v2-prod.appspot.com/maps/documentation/javascript/examples/geocoding-reverse,我的修改有什么问题?运行修改后的代码时,控制台出现错误,error in the console
这是我没有api键的完整代码:https://pastebin.com/BhEqRsq0
看起来您将纬度/经度坐标设置为输入的innerHTML
,而不是其输入的value
,这就是为什么它返回未定义的原因:
document.getElementById("curr").innerHTML = currentLatLon;
因此更改此代码:
var input = document.getElementById('curr').value;
至以下:
var input = document.getElementById('curr').innerHTML;
我刚刚在您的网络上运行了您的网络应用,在完成上述修复后,反向地理编码可以正常工作。希望对您有所帮助!