javascript – 在OpenLayers上显示功能仅限某些缩放级别

前端之家收集整理的这篇文章主要介绍了javascript – 在OpenLayers上显示功能仅限某些缩放级别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如何根据缩放级别在矢量图层上显示要素?

例如:我想只在我缩放两次时才能看到矢量图层上的特征.

提前致谢!

最佳答案
看看这个documentation

通过使用minScalemaxScale.

您也可以使用minResolution和maxResolution,但似乎使用scale更好.

minScale - float -- the minimum scale value at which the layer should display

maxScale - float -- the maximum scale value at which the layer should display

maxResolution - float -- the maximum resolution value at which the layer should display

minResolution - float -- the minimum resolution value at which the layer should display
原文链接:https://www.f2er.com/js/429559.html

猜你在找的JavaScript相关文章