gpt4 book ai didi

google-maps-api-3 - 谷歌地图 api 给出的纬度/经度单位

转载 作者:行者123 更新时间:2023-12-04 15:25:55 27 4
gpt4 key购买 nike

我已经给 google map api 提供了一个地址,例如 "21511 CONGRESS SPRINGS RD, Saratoga" 并且 api 给了我这个地址对应的纬度/经度为:

latitude=37.252165 and longitude=-122.056565,我需要知道这些经纬度的单位,是弧度吗?

最佳答案

现在它们以度为单位。但是您可以通过添加以下代码将它们转换为弧度:

google.maps.LatLng.prototype.latRadians = function()
{
return (Math.PI * this.lat()) / 180;
}
google.maps.LatLng.prototype.lngRadians = function()
{
return (Math.PI * this.lng()) / 180;
}

要了解更多信息,您可以访问:https://developers.google.com/maps/documentation/javascript/reference#LatLng

如果您有任何疑问,请发表评论。

苏亚什

关于google-maps-api-3 - 谷歌地图 api 给出的纬度/经度单位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29586189/

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