Add updateWhileInteracting to olx.layer.VectorOptions

This commit is contained in:
Éric Lemoine
2015-04-01 08:27:29 +02:00
parent 4619cac9ce
commit 42c4ae9ced
5 changed files with 48 additions and 9 deletions
+10
View File
@@ -3397,6 +3397,7 @@ olx.layer.TileOptions.prototype.useInterimTilesOnError;
* source: (ol.source.Vector|undefined),
* style: (ol.style.Style|Array.<ol.style.Style>|ol.style.StyleFunction|undefined),
* updateWhileAnimating: (boolean|undefined),
* updateWhileInteracting: (boolean|undefined),
* visible: (boolean|undefined)}}
* @api
*/
@@ -3516,6 +3517,15 @@ olx.layer.VectorOptions.prototype.style;
olx.layer.VectorOptions.prototype.updateWhileAnimating;
/**
* When set to `true`, feature batches will be recreated during interactions.
* See also `updateWhileInteracting`. Default is `false`.
* @type {boolean|undefined}
* @api
*/
olx.layer.VectorOptions.prototype.updateWhileInteracting;
/**
* Visibility. Default is `true` (visible).
* @type {boolean|undefined}