google 地图给出的 lat/long 单位 api
Unit of lat/long given by google map api
我已经给了 google 地图 api 的地址,例如 "21511 CONGRESS SPRINGS RD, Saratoga" 并且 api 给了我相应的地址lat/lng 此地址为:
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 地图 api 的地址,例如 "21511 CONGRESS SPRINGS RD, Saratoga" 并且 api 给了我相应的地址lat/lng 此地址为:
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
如有疑问请评论。
苏亚什