From 80ba469e80e7e9b7e4a7e676b8e7030a5defcba5 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Thu, 24 Jul 2014 17:58:41 +0200 Subject: [PATCH] SNAPSHOT --- externs/olx.js | 51 ++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 47 insertions(+), 4 deletions(-) diff --git a/externs/olx.js b/externs/olx.js index af81c969b46..1b7ffcf833b 100644 --- a/externs/olx.js +++ b/externs/olx.js @@ -639,11 +639,19 @@ olx.animation.ZoomOptions.prototype.duration; olx.animation.ZoomOptions.prototype.easing; /** - * @typedef {{features: (Array.) - * }} + * @typedef {{features: (Array.)}} + * @api */ olx.ClusterFeatureOptions; + +/** + * Features. + * @type {Array.} + */ +olx.ClusterFeatureOptions.prototype.features; + + /** * @typedef {{className: (string|undefined), * target: (Element|undefined)}} @@ -2561,15 +2569,50 @@ olx.source.BingMapsOptions.prototype.tileLoadFunction; /** * @typedef {{attributions: (Array.|undefined), - * extent: (ol.Extent|undefined), * format: (ol.format.Feature|undefined), * logo: (string|undefined), * projection: ol.proj.ProjectionLike, - * source: (ol.source.Vector)}} + * source: ol.source.Vector}} + * @api */ olx.source.ClusterOptions; +/** + * Attributions. + * @type {Array.|undefined} + */ +olx.source.ClusterOptions.prototype.attributions; + + +/** + * Format. + * @type {ol.format.Feature|undefined} + */ +olx.source.ClusterOptions.prototype.format; + + +/** + * Logo. + * @type {string|undefined} + */ +olx.source.ClusterOptions.prototype.logo; + + +/** + * Projection. + * @type {ol.proj.ProjectionLike} + */ +olx.source.ClusterOptions.prototype.projection; + + +/** + * Source. + * @type {ol.source.Vector} + */ +olx.source.ClusterOptions.prototype.source; + + /** * @typedef {{attributions: (Array.|undefined), * extent: (ol.Extent|undefined),