Annotations for exports
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
@exportSymbol ol.tilegrid.TileGrid
|
||||
@exportProperty ol.tilegrid.TileGrid.prototype.getMinZoom
|
||||
@exportProperty ol.tilegrid.TileGrid.prototype.getOrigin
|
||||
@exportProperty ol.tilegrid.TileGrid.prototype.getResolutions
|
||||
@exportProperty ol.tilegrid.TileGrid.prototype.getTileSize
|
||||
@@ -30,6 +30,7 @@ ol.DEFAULT_MAX_ZOOM = 42;
|
||||
* @param {olx.tilegrid.TileGridOptions} options Tile grid options.
|
||||
* @struct
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.tilegrid.TileGrid = function(options) {
|
||||
|
||||
@@ -149,6 +150,7 @@ ol.tilegrid.TileGrid.prototype.getMaxZoom = function() {
|
||||
/**
|
||||
* @return {number} Min zoom.
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.tilegrid.TileGrid.prototype.getMinZoom = function() {
|
||||
return this.minZoom;
|
||||
@@ -159,6 +161,7 @@ ol.tilegrid.TileGrid.prototype.getMinZoom = function() {
|
||||
* @param {number} z Z.
|
||||
* @return {ol.Coordinate} Origin.
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.tilegrid.TileGrid.prototype.getOrigin = function(z) {
|
||||
if (!goog.isNull(this.origin_)) {
|
||||
@@ -174,6 +177,7 @@ ol.tilegrid.TileGrid.prototype.getOrigin = function(z) {
|
||||
/**
|
||||
* @param {number} z Z.
|
||||
* @return {number} Resolution.
|
||||
* @todo api
|
||||
*/
|
||||
ol.tilegrid.TileGrid.prototype.getResolution = function(z) {
|
||||
goog.asserts.assert(this.minZoom <= z && z <= this.maxZoom);
|
||||
@@ -373,6 +377,7 @@ ol.tilegrid.TileGrid.prototype.getTileCoordResolution = function(tileCoord) {
|
||||
* @param {number} z Z.
|
||||
* @return {number} Tile size.
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.tilegrid.TileGrid.prototype.getTileSize = function(z) {
|
||||
if (goog.isDef(this.tileSize_)) {
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
@exportSymbol ol.tilegrid.WMTS
|
||||
@exportProperty ol.tilegrid.WMTS.prototype.getMatrixIds
|
||||
@@ -13,6 +13,7 @@ goog.require('ol.tilegrid.TileGrid');
|
||||
* @param {olx.tilegrid.WMTSOptions} options WMTS options.
|
||||
* @struct
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.tilegrid.WMTS = function(options) {
|
||||
|
||||
@@ -51,6 +52,7 @@ ol.tilegrid.WMTS.prototype.getMatrixId = function(z) {
|
||||
/**
|
||||
* @return {Array.<string>} MatrixIds.
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.tilegrid.WMTS.prototype.getMatrixIds = function() {
|
||||
return this.matrixIds_;
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
@exportSymbol ol.tilegrid.XYZ
|
||||
@@ -15,6 +15,7 @@ goog.require('ol.tilegrid.TileGrid');
|
||||
* @param {olx.tilegrid.XYZOptions} options XYZ options.
|
||||
* @struct
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.tilegrid.XYZ = function(options) {
|
||||
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
@exportSymbol ol.tilegrid.Zoomify
|
||||
@@ -12,6 +12,7 @@ goog.require('ol.tilegrid.TileGrid');
|
||||
* @extends {ol.tilegrid.TileGrid}
|
||||
* @param {olx.tilegrid.ZoomifyOptions=} opt_options Options.
|
||||
* @todo stability experimental
|
||||
* @todo api
|
||||
*/
|
||||
ol.tilegrid.Zoomify = function(opt_options) {
|
||||
var options = goog.isDef(opt_options) ? opt_options : options;
|
||||
|
||||
Reference in New Issue
Block a user