Skip to content

Commit

Permalink
SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
fredj committed Jul 24, 2014
1 parent 3ca7b93 commit 80ba469
Showing 1 changed file with 47 additions and 4 deletions.
51 changes: 47 additions & 4 deletions externs/olx.js
Expand Up @@ -639,11 +639,19 @@ olx.animation.ZoomOptions.prototype.duration;
olx.animation.ZoomOptions.prototype.easing;

/**
* @typedef {{features: (Array.<ol.Feature>)
* }}
* @typedef {{features: (Array.<ol.Feature>)}}
* @api
*/
olx.ClusterFeatureOptions;


/**
* Features.
* @type {Array.<ol.Feature>}
*/
olx.ClusterFeatureOptions.prototype.features;


/**
* @typedef {{className: (string|undefined),
* target: (Element|undefined)}}
Expand Down Expand Up @@ -2561,15 +2569,50 @@ olx.source.BingMapsOptions.prototype.tileLoadFunction;

/**
* @typedef {{attributions: (Array.<ol.Attribution>|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.<ol.Attribution>|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.<ol.Attribution>|undefined),
* extent: (ol.Extent|undefined),
Expand Down

0 comments on commit 80ba469

Please sign in to comment.