Remove api annotations from enums

This commit is contained in:
Andreas Hocevar
2016-06-03 09:29:14 +02:00
parent ca07de422c
commit 2ec4969ac7
11 changed files with 0 additions and 13 deletions

View File

@@ -25,7 +25,6 @@ ol.control.ScaleLineProperty = {
* Units for the scale line. Supported values are `'degrees'`, `'imperial'`,
* `'nautical'`, `'metric'`, `'us'`.
* @enum {string}
* @api stable
*/
ol.control.ScaleLineUnits = {
DEGREES: 'degrees',

View File

@@ -13,7 +13,6 @@ goog.require('ol.proj');
/**
* IGC altitude/z. One of 'barometric', 'gps', 'none'.
* @enum {string}
* @api
*/
ol.format.IGCZ = {
BAROMETRIC: 'barometric',

View File

@@ -15,7 +15,6 @@ goog.require('ol.proj.Units');
* `'Polygon'`, `'MultiPoint'`, `'MultiLineString'`, `'MultiPolygon'`,
* `'GeometryCollection'`, `'Circle'`.
* @enum {string}
* @api stable
*/
ol.geom.GeometryType = {
POINT: 'Point',
@@ -35,7 +34,6 @@ ol.geom.GeometryType = {
* or measure ('M') coordinate is available. Supported values are `'XY'`,
* `'XYZ'`, `'XYM'`, `'XYZM'`.
* @enum {string}
* @api stable
*/
ol.geom.GeometryLayout = {
XY: 'XY',

View File

@@ -31,7 +31,6 @@ ol.OverlayProperty = {
* `'center-left'`, `'center-center'`, `'center-right'`, `'top-left'`,
* `'top-center'`, `'top-right'`
* @enum {string}
* @api stable
*/
ol.OverlayPositioning = {
BOTTOM_LEFT: 'bottom-left',

View File

@@ -14,7 +14,6 @@ goog.require('ol.sphere.NORMAL');
* Projection units: `'degrees'`, `'ft'`, `'m'`, `'pixels'`, `'tile-pixels'` or
* `'us-ft'`.
* @enum {string}
* @api stable
*/
ol.proj.Units = {
DEGREES: 'degrees',

View File

@@ -4,7 +4,6 @@ goog.provide('ol.raster.OperationType');
/**
* Raster operation type. Supported values are `'pixel'` and `'image'`.
* @enum {string}
* @api
*/
ol.raster.OperationType = {
PIXEL: 'pixel',

View File

@@ -18,7 +18,6 @@ goog.require('ol.vec.Mat4');
/**
* Available renderers: `'canvas'`, `'dom'` or `'webgl'`.
* @enum {string}
* @api stable
*/
ol.RendererType = {
CANVAS: 'canvas',

View File

@@ -10,7 +10,6 @@ goog.require('ol.proj');
/**
* State of the source, one of 'undefined', 'loading', 'ready' or 'error'.
* @enum {string}
* @api
*/
ol.source.State = {
UNDEFINED: 'undefined',

View File

@@ -7,7 +7,6 @@ goog.provide('ol.source.wms.ServerType');
* `'qgis'`. These are servers that have vendor parameters beyond the WMS
* specification that OpenLayers can make use of.
* @enum {string}
* @api
*/
ol.source.wms.ServerType = {
CARMENTA_SERVER: 'carmentaserver',

View File

@@ -15,7 +15,6 @@ goog.require('ol.tilegrid.WMTS');
/**
* Request encoding. One of 'KVP', 'REST'.
* @enum {string}
* @api
*/
ol.source.WMTSRequestEncoding = {
KVP: 'KVP', // see spec §8

View File

@@ -16,7 +16,6 @@ goog.require('ol.style.ImageState');
/**
* Icon anchor units. One of 'fraction', 'pixels'.
* @enum {string}
* @api
*/
ol.style.IconAnchorUnits = {
FRACTION: 'fraction',
@@ -27,7 +26,6 @@ ol.style.IconAnchorUnits = {
/**
* Icon origin. One of 'bottom-left', 'bottom-right', 'top-left', 'top-right'.
* @enum {string}
* @api
*/
ol.style.IconOrigin = {
BOTTOM_LEFT: 'bottom-left',