实施 Google 墨卡托(球形墨卡托)
我想在我的应用程序中使用球面墨卡托算法将纬度/经度点投影到 2D 平面。
球形墨卡托也称为 Google 墨卡托、EPSG-900913 或 EPSG-3785。
有几个页面介绍了如何通过 OpenLayers 库在 JavaScript 中使用此功能,但我不使用 JavaScript。
OpenLayers 中的文档根本没有帮助我,所以我想寻求帮助如何用 Java 实现 Google Mercator。
I would like to use the Spherical Mercator algorithm in my application to project lat/lon points to a 2D plane.
The Spherical Mercator is also known as Google Mercator, EPSG-900913 or EPSG-3785.
There are several pages how to use this in JavaScript via the OpenLayers library, but I don't use JavaScript.
The documentation in OpenLayers didn't help me at all so I would like to ask for help how to implement the Google Mercator in Java.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用库将 WGS84(经度/纬度)形式转换为墨卡托:
用于Java使用,例如。 geotools 或 proj4j
如果您想自己实现的话:
维基百科上的文章非常有用:http://en.wikipedia.org/wiki/Mercator_projection
you can use Libraries to convert form WGS84 (lon/lat) to Mercator:
for Java use eg. geotools or proj4j
if you whant to implement that by yourself:
the article at Wikipedia is quite useful: http://en.wikipedia.org/wiki/Mercator_projection