我已经给了一个谷歌地图api的地址,如“21511 CONGRESS SPRINGS RD,Saratoga”,api给了我相应的这个地址的lat / lng:
latitude=37.252165 and longitude=-122.056565
,我需要知道这些纬度和经度的单位,它们是弧度吗?
答案 0 :(得分:5)
现在他们在学位。但是你可以通过添加以下代码来转换它们:
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
如果您有任何疑问,请发表评论。
Suyash