Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有矢量切片图层,我想重绘这个图层,但我想保存我的缓存数据。所以我不能使用传单功能redraw(),因为这正在删除我的缓存。
redraw()
有什么功能可以做到这一点吗?我只想在没有任何计算的情况下再次绘制这些图块,因为它们是较早制作的。
所以我找到了答案。这可能很好。如果我们的矢量切片层被称为 tileLayer,那么我们可以简单地这样写:
tileLayer._reset(); tileLayer._update();