From 2565e00e1d772d5d6242d3108f90ba54edb97e1c Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Wed, 17 Jul 2013 10:56:19 +0200 Subject: [PATCH] Add basic ol.animation api doc --- src/objectliterals.jsdoc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/objectliterals.jsdoc b/src/objectliterals.jsdoc index 215f8d1328..d855c69366 100644 --- a/src/objectliterals.jsdoc +++ b/src/objectliterals.jsdoc @@ -120,32 +120,32 @@ /** * @typedef {Object} ol.animation.BounceOptions * @property {number} resolution Resolution. - * @property {number|undefined} start Start. - * @property {number|undefined} duration Duration. + * @property {number|undefined} start The start time of the animation. Default is immediately. + * @property {number|undefined} duration The duration of the animation in milliseconds. * @property {function(number):number|undefined} easing Easing function. */ /** * @typedef {Object} ol.animation.PanOptions * @property {ol.Coordinate} source Source. - * @property {number|undefined} start Start. - * @property {number|undefined} duration Duration. + * @property {number|undefined} start The start time of the animation. Default is immediately. + * @property {number|undefined} duration The duration of the animation in milliseconds. * @property {function(number):number|undefined} easing Easing function. */ /** * @typedef {Object} ol.animation.RotateOptions * @property {number} rotation Rotation. - * @property {number|undefined} start Start. - * @property {number|undefined} duration Duration. + * @property {number|undefined} start The start time of the animation. Default is immediately. + * @property {number|undefined} duration The duration of the animation in milliseconds. * @property {function(number):number|undefined} easing Easing function. */ /** * @typedef {Object} ol.animation.ZoomOptions * @property {number} resolution number Resolution. - * @property {number|undefined} start Start. - * @property {number|undefined} duration Duration. + * @property {number|undefined} start The start time of the animation. Default is immediately. + * @property {number|undefined} duration The duration of the animation in milliseconds. * @property {function(number):number|undefined} easing Easing function. */