Add ol.easing to api docs

This commit is contained in:
Peter Robins
2014-06-02 12:53:56 -04:00
committed by Frederic Junod
parent 33948a7244
commit 85c1427111
4 changed files with 17 additions and 5 deletions
+8 -4
View File
@@ -535,7 +535,8 @@ olx.animation.BounceOptions.prototype.duration;
/**
* The easing function to use. Default is `ol.easing.upAndDown`
* The easing function to use. Can be an {@link ol.easing} or a custom function.
* Default is {@link ol.easing.upAndDown}.
* @type {function(number):number|undefined}
*/
olx.animation.BounceOptions.prototype.easing;
@@ -573,7 +574,8 @@ olx.animation.PanOptions.prototype.duration;
/**
* The easing function to use. Default is `ol.easing.inAndOut`
* The easing function to use. Can be an {@link ol.easing} or a custom function.
* Default is {@link ol.easing.inAndOut}.
* @type {function(number):number|undefined}
*/
olx.animation.PanOptions.prototype.easing;
@@ -621,7 +623,8 @@ olx.animation.RotateOptions.prototype.duration;
/**
* The easing function to use. Default is `ol.easing.inAndOut`
* The easing function to use. Can be an {@link ol.easing} or a custom function.
* Default is {@link ol.easing.inAndOut}.
* @type {function(number):number|undefined}
*/
olx.animation.RotateOptions.prototype.easing;
@@ -660,7 +663,8 @@ olx.animation.ZoomOptions.prototype.duration;
/**
* Easing function.
* The easing function to use. Can be an {@link ol.easing} or a custom function.
* Default is {@link ol.easing.inAndOut}.
* @type {function(number):number|undefined}
*/
olx.animation.ZoomOptions.prototype.easing;