From 501546bc4407dbb0e9e14c9c43d9b210e264eaaf Mon Sep 17 00:00:00 2001 From: mike-000 <49240900+mike-000@users.noreply.github.com> Date: Mon, 17 Feb 2020 16:52:59 +0000 Subject: [PATCH] add minZoom and maxZoom options --- src/ol/layer/Group.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ol/layer/Group.js b/src/ol/layer/Group.js index f03fe7b7dd..12dff00af2 100644 --- a/src/ol/layer/Group.js +++ b/src/ol/layer/Group.js @@ -33,6 +33,10 @@ import SourceState from '../source/State.js'; * visible. * @property {number} [maxZoom] The maximum view zoom level (inclusive) at which this layer will * be visible. + * @property {number} [minZoom] The minimum view zoom level (exclusive) above which this layer will be + * visible. + * @property {number} [maxZoom] The maximum view zoom level (inclusive) at which this layer will + * be visible. * @property {Array|import("../Collection.js").default} [layers] Child layers. */