摘要: function fromDegrees(longitude, latitude, height = 0.0) { longitude = (longitude * Math.PI) / 180.0; latitude = (latitude * Math.PI) / 180.0; const ra 阅读全文
posted @ 2024-07-25 17:52 小韓烟柳 阅读(164) 评论(0) 推荐(0)
摘要: function fromCartesian(cartesian) { const oneOverRadii = { x: 1.0 / 6378137.0, y: 1.0 / 6378137.0, z: 1.0 / 6356752.3142451793 }; const oneOverRadiiSq 阅读全文
posted @ 2024-07-25 17:51 小韓烟柳 阅读(192) 评论(0) 推荐(0)