Better API doc strings in ol.Map
This commit is contained in:
+5
-5
@@ -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() {
|
||||||
|
|||||||
Reference in New Issue
Block a user