ARCGIS 切片到坐标
我正在尝试开发自己的地图服务,然后将生成的图像显示到 ARCGIS 地图查看器中...... 无论如何,我的 *.ashx 服务读取 ARCGIS Tile URL 看起来像“http://services.arcgisonline.com/ArcGIS/rest/services/NGS_Topo_US_2D/MapServer/tile/1/1/2”
我想转换 (Zoom /TileX/TileY) 从上面的 url 到 Pixel 或 BoundingBox 使用 SRID 4326
BoundingBox 值不应超过最大/最小值介于 (-180,-90) 到 (180,90) 之间。
我将 Bbox 传递给我的存储过程,与一些 SQL 地理行相交。
有什么想法吗?
I'm trying to develop my own map service then display my generated images into ARCGIS map viewer ...
Anyway my *.ashx service reads ARCGIS Tile URL looks like "http://services.arcgisonline.com/ArcGIS/rest/services/NGS_Topo_US_2D/MapServer/tile/1/1/2"
I want to transform the value of (Zoom/TileX/TileY) from the url above to Pixel or BoundingBox USING SRID 4326
BoundingBox values should not exceeds Max/Min value between (-180,-90) to (180,90).
I'm taking the Bbox then passe it to my Stored procedure witch intersects some SQL geography rows.
Any Ideas ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看 BruTile 的 InvertedYAxis.TileToWorld
您将需要根据此处找到的信息定义一个架构:
http://server.arcgisonline.com/ArcGIS/rest/services/NGS_Topo_US_2D/MapServer不确定
这是否是您情况下最简单的解决方案
You could look at BruTile's InvertedYAxis.TileToWorld
You will need to define a schema based on the information you find here:
http://server.arcgisonline.com/ArcGIS/rest/services/NGS_Topo_US_2D/MapServer
Not sure if this is the easiest solution in your situation