如何将纬度和经度转换为世界坐标à谷歌地图
我正在用 C++ 设计一个应用程序来查看和编辑虚构星球的地图。它的工作原理与谷歌地图类似。我希望用户能够在 GUI 上看到他们当前的纬度/经度位置和世界坐标。
如何将纬度和经度值转换为“世界坐标”并返回,就像在 Google 地图中一样?或者到“像素坐标”然后返回?
I am designing an application in C++ to view and edit a map of a fictional planet. How it works will be similar to Google Maps. I would like the user to be able to see their current position in latitude/longitude and world coordinates on the GUI.
How can I convert a latitude and longitude values to "world coordinates" and back, as in Google Maps? or to "pixel coordinates" and back?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了我的问题的答案。不同坐标系之间的转换公式可以在 Google Maps API 网站上的本示例的源代码中找到: http://code.google.com/apis/maps/documentation/javascript/examples/map-coordinates.html
I found the answer to my question. The formulas for converting between the different coordinate systems can be found in the source code of this example on the Google Maps API website: http://code.google.com/apis/maps/documentation/javascript/examples/map-coordinates.html