diff --git a/src/ol/map.js b/src/ol/map.js index 1a72f3bbac..a9d24ec2ea 100644 --- a/src/ol/map.js +++ b/src/ol/map.js @@ -360,7 +360,7 @@ ol.Map = function(options) { goog.bind(this.handleTileChange_, this)); /** - * Collection of Features to skip drawing. + * Features to skip at rendering time. * @type {ol.Collection} * @private */ @@ -371,7 +371,7 @@ ol.Map = function(options) { this.registerDisposable(this.skippedFeatures_); /** - * Hash of features uid to skip drawing. + * Uids of features to skip at rendering time. * @type {Object.} * @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. * @todo stability experimental */ @@ -826,8 +826,8 @@ ol.Map.prototype.getSkippedFeatures = function() { /** - * Get the hash of features uids to be skipped. - * @return {Object} Features uids hash + * Get the uids of features to skip. + * @return {Object} Feature uids. * @todo stability experimental */ ol.Map.prototype.getSkippedFeaturesHash = function() {