TileMill MBUtil:瓷砖未在 Openlayers 中加载
我已使用 MBUtil 导出 MBTile 文件,但当我使用 OpenLayers 创建覆盖图时,它并未生成所有 PNG 图块。我缺少什么?
I've exported the MBTile file using MBUtil but it wasn't generating all the PNG tiles when I'm creating the Overlay map using OpenLayers. What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你能澄清一下这个问题吗? TileMill 是否未正确生成图块(是否崩溃?停滞?是否有其他错误迹象?),或者是否已完成 MBTiles 导出,但问题在于将图层放到页面上?
根据您发布的代码,您应该检查一下
http://localhost:8888/1.0.0/firstProject/0/0/0.png
(或者如果您没有,则查看更高数字的图块不渲染缩放级别为零)存在。如果您刚刚使用 mbutil 导出图块,则可能没有该 URL 的1.0.0
部分 - 这是 TMS 层正常工作所必需的。只需创建一个名为1.0.0
的目录,然后将firstProject
移入其中(如果是这种情况)。Could you clarify this question? Is TileMill not generating the tiles correctly (is it crashing? stalling? any other signs of errors?), or is it completing the MBTiles export and the problem is getting your layer onto a page?
Given the code you posted, you should check to see that
http://localhost:8888/1.0.0/firstProject/0/0/0.png
(or a higher-number tile if you didn't render zoom level zero) is present. If you've just used mbutil to export the tiles, it's likely that you don't have the1.0.0
part of that URL around - which is necessary for the TMS layer to work. Just make a directory called1.0.0
and movefirstProject
into it if that's the case.