Add default stability level to docs of exported things.
This commit is contained in:
@@ -28,6 +28,7 @@ ol.DEFAULT_MAX_ZOOM = 42;
|
||||
/**
|
||||
* @constructor
|
||||
* @param {ol.tilegrid.TileGridOptions} options Tile grid options.
|
||||
* @todo stability experimental
|
||||
*/
|
||||
ol.tilegrid.TileGrid = function(options) {
|
||||
|
||||
@@ -138,6 +139,7 @@ ol.tilegrid.TileGrid.prototype.forEachTileCoordParentTileRange =
|
||||
|
||||
/**
|
||||
* @return {number} Max zoom.
|
||||
* @todo stability experimental
|
||||
*/
|
||||
ol.tilegrid.TileGrid.prototype.getMaxZoom = function() {
|
||||
return this.maxZoom;
|
||||
@@ -146,6 +148,7 @@ ol.tilegrid.TileGrid.prototype.getMaxZoom = function() {
|
||||
|
||||
/**
|
||||
* @return {number} Min zoom.
|
||||
* @todo stability experimental
|
||||
*/
|
||||
ol.tilegrid.TileGrid.prototype.getMinZoom = function() {
|
||||
return this.minZoom;
|
||||
@@ -155,6 +158,7 @@ ol.tilegrid.TileGrid.prototype.getMinZoom = function() {
|
||||
/**
|
||||
* @param {number} z Z.
|
||||
* @return {ol.Coordinate} Origin.
|
||||
* @todo stability experimental
|
||||
*/
|
||||
ol.tilegrid.TileGrid.prototype.getOrigin = function(z) {
|
||||
if (!goog.isNull(this.origin_)) {
|
||||
@@ -179,6 +183,7 @@ ol.tilegrid.TileGrid.prototype.getResolution = function(z) {
|
||||
|
||||
/**
|
||||
* @return {Array.<number>} Resolutions.
|
||||
* @todo stability experimental
|
||||
*/
|
||||
ol.tilegrid.TileGrid.prototype.getResolutions = function() {
|
||||
return this.resolutions_;
|
||||
@@ -367,6 +372,7 @@ ol.tilegrid.TileGrid.prototype.getTileCoordResolution = function(tileCoord) {
|
||||
/**
|
||||
* @param {number} z Z.
|
||||
* @return {ol.Size} Tile size.
|
||||
* @todo stability experimental
|
||||
*/
|
||||
ol.tilegrid.TileGrid.prototype.getTileSize = function(z) {
|
||||
if (!goog.isNull(this.tileSize_)) {
|
||||
|
||||
@@ -11,6 +11,7 @@ goog.require('ol.tilegrid.TileGrid');
|
||||
* @constructor
|
||||
* @extends {ol.tilegrid.TileGrid}
|
||||
* @param {ol.tilegrid.WMTSOptions} options WMTS options.
|
||||
* @todo stability experimental
|
||||
*/
|
||||
ol.tilegrid.WMTS = function(options) {
|
||||
|
||||
@@ -48,6 +49,7 @@ ol.tilegrid.WMTS.prototype.getMatrixId = function(z) {
|
||||
|
||||
/**
|
||||
* @return {Array.<string>} MatrixIds.
|
||||
* @todo stability experimental
|
||||
*/
|
||||
ol.tilegrid.WMTS.prototype.getMatrixIds = function() {
|
||||
return this.matrixIds_;
|
||||
|
||||
@@ -13,6 +13,7 @@ goog.require('ol.tilegrid.TileGrid');
|
||||
* @constructor
|
||||
* @extends {ol.tilegrid.TileGrid}
|
||||
* @param {ol.tilegrid.XYZOptions} options XYZ options.
|
||||
* @todo stability experimental
|
||||
*/
|
||||
ol.tilegrid.XYZ = function(options) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user