GDAL2Tiles 和向量
我正在尝试制作一个非常大的仓库的交互式地图。
我已扫描蓝图,并使用 OpenLayers 和 TMS 数据源(使用 GDAL2Tiles 生成)来显示地图。 一切看起来都很棒,但我完全不知道如何在其上创建矢量图层!
理想情况下,我的仓库顶部有大约 100 个左右的向量,每个向量都可以单击以显示附加信息,等等等等……但是我用什么来制作向量,以及如何引用由于我没有使用纬度/经度坐标,因此不同缩放级别的图像上的同一位置?
I am trying to make an interactive map of a really big warehouse.
I have scanned blueprints and am using OpenLayers with a TMS data source (generated using GDAL2Tiles) to display the map. Everything looks fantastic, but I'm at a total loss as to how to create a vector layer on top of it!
Ideally, I'd have ~100 or so vectors on top of my warehouse, each of which would be clickable to bring up additional information, blah blah blah.. but what do i use to make the vectors, and how do i reference the same location on the image at different zoom levels, since i am not using lat/long coordinates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道怎么做了!
基本上,在其他程序中做各种疯狂的工作来制作单独的矢量图层是多余的 - 您只需使用数组及其位置来定义向量元素:
请参阅此示例中的源代码:
盒子矢量
希望这对某人有帮助!
I figured out how to do it!
Basically, doing all kinds of crazy work to make a separate vector layer in some other program is overkill - you just define vector elements using an array with their location:
See the source in this example:
Boxes Vector
Hope this is helpful to someone!