From 4001b0c0b9ffebeeef6a28841331248be06b1bef Mon Sep 17 00:00:00 2001 From: yonzmeer Date: Wed, 15 Jul 2020 20:02:53 +0300 Subject: [PATCH] Remove update while interacting/animating from VectorImage as described in issue 11250 --- src/ol/layer/VectorImage.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/ol/layer/VectorImage.js b/src/ol/layer/VectorImage.js index feaf9a5552..77c786265a 100644 --- a/src/ol/layer/VectorImage.js +++ b/src/ol/layer/VectorImage.js @@ -40,12 +40,6 @@ import {assign} from '../obj.js'; * Within the same z-index, a feature rendered before another has higher priority. * @property {import("../style/Style.js").StyleLike} [style] Layer style. See * {@link module:ol/style} for default style which will be used if this is not defined. - * @property {boolean} [updateWhileAnimating=false] When set to `true`, feature batches will - * be recreated during animations. This means that no vectors will be shown clipped, but the - * setting will have a performance impact for large amounts of vector data. When set to `false`, - * batches will be recreated when no animation is active. - * @property {boolean} [updateWhileInteracting=false] When set to `true`, feature batches will - * be recreated during interactions. See also `updateWhileAnimating`. * @property {number} [imageRatio=1] Ratio by which the rendered extent should be larger than the * viewport extent. A larger ratio avoids cut images during panning, but will cause a decrease in performance. */