Better API doc strings in ol.Map

This commit is contained in:
Éric Lemoine
2014-03-20 13:25:20 +01:00
parent 435e5e6916
commit 71484d9a53
+5 -5
View File
@@ -360,7 +360,7 @@ ol.Map = function(options) {
goog.bind(this.handleTileChange_, this)); goog.bind(this.handleTileChange_, this));
/** /**
* Collection of Features to skip drawing. * Features to skip at rendering time.
* @type {ol.Collection} * @type {ol.Collection}
* @private * @private
*/ */
@@ -371,7 +371,7 @@ ol.Map = function(options) {
this.registerDisposable(this.skippedFeatures_); this.registerDisposable(this.skippedFeatures_);
/** /**
* Hash of features uid to skip drawing. * Uids of features to skip at rendering time.
* @type {Object.<string, boolean>} * @type {Object.<string, boolean>}
* @private * @private
*/ */
@@ -816,7 +816,7 @@ ol.Map.prototype.getTilePriority =
/** /**
* Get the collection of features to be skipped. * Get the collection of features to skip.
* @return {ol.Collection} Features collection. * @return {ol.Collection} Features collection.
* @todo stability experimental * @todo stability experimental
*/ */
@@ -826,8 +826,8 @@ ol.Map.prototype.getSkippedFeatures = function() {
/** /**
* Get the hash of features uids to be skipped. * Get the uids of features to skip.
* @return {Object} Features uids hash * @return {Object} Feature uids.
* @todo stability experimental * @todo stability experimental
*/ */
ol.Map.prototype.getSkippedFeaturesHash = function() { ol.Map.prototype.getSkippedFeaturesHash = function() {