gpt4 book ai didi

google-maps-api-3 - 如何以编程方式或使用API​​获取位置的纬度,经度

转载 作者:行者123 更新时间:2023-12-03 11:50:09 24 4
gpt4 key购买 nike

如何从佛罗里达州这样的城市名称中获取纬度,如何通过向Google Map API发送JSON请求来获取纬度和经度。

有什么办法吗?

我需要通过JSON的JavaScript或jQuery解决方案。

最佳答案

不确定您说的是send json是什么意思,但是可以使用以下功能来实现:

function getLatLong(address){
var geo = new google.maps.Geocoder;

geo.geocode({'address':address},function(results, status){
if (status == google.maps.GeocoderStatus.OK) {
return results[0].geometry.location;
} else {
alert("Geocode was not successful for the following reason: " + status);
}

});

}

这将返回一个对象,您可以使用.lat()和.lng()进行引用以获取纬度和经度。

关于google-maps-api-3 - 如何以编程方式或使用API​​获取位置的纬度,经度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3617227/

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