gpt4 book ai didi

google-maps - 是否可以使用Google map 从坐标获取地址?

转载 作者:行者123 更新时间:2023-12-03 10:11:44 25 4
gpt4 key购买 nike

我只是好奇。也许用于 future 的项目。我想知道是否可以通过Google API从给定坐标中检索地址。

最佳答案

是。只需使用Google Geocoding and Places API https://developers.google.com/maps/documentation/geocoding/https://developers.google.com/maps/documentation/places/

示例(源自here):

var geocoder;

function initialize() {
geocoder = new google.maps.Geocoder();
}

function codeLatLng(lat, lng) {
var latlng = new google.maps.LatLng(lat, lng);
geocoder.geocode({
'latLng': latlng
}, function (results, status) {
if (status === google.maps.GeocoderStatus.OK) {
if (results[1]) {
console.log(results[1]);
} else {
alert('No results found');
}
} else {
alert('Geocoder failed due to: ' + status);
}
});
}

google.maps.event.addDomListener(window, 'load', initialize);

关于google-maps - 是否可以使用Google map 从坐标获取地址?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10008949/

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