如何在 C# 中将经度/纬度和缩放级别转换为 Google 坐标?
我想在 C# 中编写一个函数,它接受地理坐标(例如, longitude = 30.23423432 latitude = 23.995454342 )和缩放级别(例如, 12 )并将其转换为 google 平铺坐标(例如, x= 43234 y= 26234)。
I want to write a function in c# which takes geo coordinates (for example, longitude = 30.23423432 latitude = 23.995454342 ) and a zoom level (for example, 12) and converts it to a google tile coordinates ( for example, x= 43234 y=26234 ).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想这篇文章可能会对你有所帮助。
http://groups.google.com/group /Google-Maps-API/browse_thread/thread/d2103ac29e95696f?pli=1
I think this post might help you out.
http://groups.google.com/group/Google-Maps-API/browse_thread/thread/d2103ac29e95696f?pli=1
一种选择是利用 Google 的 UTM/MTM 接口。其链接为 http://leware.net/geo/utmgoogle.htm。
An option is to utilize the UTM/MTM interface to Google. The link to it is http://leware.net/geo/utmgoogle.htm.