Merge pull request #2178 from probins/classdesc

Use @classdesc notation.
This commit is contained in:
Tim Schaub
2014-06-09 11:18:14 -06:00
114 changed files with 372 additions and 43 deletions

View File

@@ -17,6 +17,9 @@ goog.require('ol.tilegrid.XYZ');
/**
* @classdesc
* Layer source for Bing Maps tile data.
*
* @constructor
* @extends {ol.source.TileImage}
* @param {olx.source.BingMapsOptions} options Bing Maps options.

View File

@@ -6,6 +6,9 @@ goog.require('ol.source.StaticVector');
/**
* @classdesc
* Static vector source in GeoJSON format
*
* @constructor
* @extends {ol.source.StaticVector}
* @fires ol.source.VectorEvent

View File

@@ -6,6 +6,9 @@ goog.require('ol.source.StaticVector');
/**
* @classdesc
* Static vector source in GPX format
*
* @constructor
* @extends {ol.source.StaticVector}
* @fires ol.source.VectorEvent

View File

@@ -6,6 +6,9 @@ goog.require('ol.source.StaticVector');
/**
* @classdesc
* Static vector source in IGC format
*
* @constructor
* @extends {ol.source.StaticVector}
* @fires ol.source.VectorEvent

View File

@@ -8,6 +8,9 @@ goog.require('ol.source.Image');
/**
* @classdesc
* Base class for image sources where a canvas element is the image.
*
* @constructor
* @extends {ol.source.Image}
* @param {olx.source.ImageCanvasOptions} options

View File

@@ -22,6 +22,9 @@ ol.source.ImageOptions;
/**
* @classdesc
* Abstract base class for sources providing a single image.
*
* @constructor
* @extends {ol.source.Source}
* @param {ol.source.ImageOptions} options Single image source options.

View File

@@ -8,6 +8,10 @@ goog.require('ol.source.Image');
/**
* @classdesc
* An image source for 'static', that is, non-georeferenced, images.
* See examples/static-image for example.
*
* @constructor
* @extends {ol.source.Image}
* @param {olx.source.ImageStaticOptions} options Options.

View File

@@ -16,6 +16,7 @@ goog.require('ol.vec.Mat4');
/**
* @classdesc
* An image source whose images are canvas elements into which vector features
* read from a vector source (`ol.source.Vector`) are drawn. An
* `ol.source.ImageVector` object is to be used as the `source` of an image

View File

@@ -17,6 +17,9 @@ goog.require('ol.source.wms.ServerType');
/**
* @classdesc
* Source for WMS servers providing single, untiled images.
*
* @constructor
* @extends {ol.source.Image}
* @param {olx.source.ImageWMSOptions=} opt_options Options.

View File

@@ -6,6 +6,9 @@ goog.require('ol.source.StaticVector');
/**
* @classdesc
* Static vector source in KML format
*
* @constructor
* @extends {ol.source.StaticVector}
* @fires ol.source.VectorEvent

View File

@@ -10,6 +10,9 @@ goog.require('ol.source.Image');
/**
* @classdesc
* Source for images from Mapguide servers
*
* @constructor
* @extends {ol.source.Image}
* @param {olx.source.MapGuideOptions} options Options.

View File

@@ -9,6 +9,9 @@ goog.require('ol.source.XYZ');
/**
* @classdesc
* Layer source for the MapQuest tile server.
*
* @constructor
* @extends {ol.source.XYZ}
* @param {olx.source.MapQuestOptions=} opt_options MapQuest options.

View File

@@ -7,6 +7,9 @@ goog.require('ol.source.XYZ');
/**
* @classdesc
* Layer source for the OpenStreetMap tile server.
*
* @constructor
* @extends {ol.source.XYZ}
* @param {olx.source.OSMOptions=} opt_options Open Street Map options.

View File

@@ -6,6 +6,9 @@ goog.require('ol.source.StaticVector');
/**
* @classdesc
* Static vector source in OSMXML format
*
* @constructor
* @extends {ol.source.StaticVector}
* @fires ol.source.VectorEvent

View File

@@ -33,6 +33,9 @@ ol.source.SourceOptions;
/**
* @classdesc
* Abstract base class for {@link ol.layer.Layer} sources.
*
* @constructor
* @extends {ol.Observable}
* @fires change Triggered when the state of the source changes.

View File

@@ -79,6 +79,9 @@ ol.source.StamenProviderConfig = {
/**
* @classdesc
* Layer source for the Stamen tile server.
*
* @constructor
* @extends {ol.source.XYZ}
* @param {olx.source.StamenOptions} options Stamen options.

View File

@@ -14,6 +14,9 @@ goog.require('ol.source.Tile');
/**
* @classdesc
* Base class for sources providing images divided into a tile grid.
*
* @constructor
* @extends {ol.source.Tile}
* @param {olx.source.TileImageOptions} options Image tile options.

View File

@@ -22,6 +22,9 @@ goog.require('ol.tilegrid.XYZ');
/**
* @classdesc
* Layer source for tile data in TileJSON format.
*
* @constructor
* @extends {ol.source.TileImage}
* @param {olx.source.TileJSONOptions} options TileJSON options.

View File

@@ -24,6 +24,9 @@ ol.source.TileOptions;
/**
* @classdesc
* Abstract base class for sources providing images divided into a tile grid.
*
* @constructor
* @extends {ol.source.Source}
* @param {ol.source.TileOptions} options Tile source options.

View File

@@ -21,6 +21,9 @@ goog.require('ol.source.wms.ServerType');
/**
* @classdesc
* Layer source for tile data from WMS servers.
*
* @constructor
* @extends {ol.source.TileImage}
* @param {olx.source.TileWMSOptions=} opt_options Tile WMS options.

View File

@@ -6,6 +6,9 @@ goog.require('ol.source.StaticVector');
/**
* @classdesc
* Static vector source in TopoJSON format
*
* @constructor
* @extends {ol.source.StaticVector}
* @fires ol.source.VectorEvent

View File

@@ -39,6 +39,9 @@ ol.source.VectorEventType = {
/**
* @classdesc
* Base class for vector sources.
*
* @constructor
* @extends {ol.source.Source}
* @fires ol.source.VectorEvent

View File

@@ -26,6 +26,9 @@ ol.source.WMTSRequestEncoding = {
/**
* @classdesc
* Layer source for tile data from WMTS servers.
*
* @constructor
* @extends {ol.source.TileImage}
* @param {olx.source.WMTSOptions} options WMTS options.

View File

@@ -9,6 +9,9 @@ goog.require('ol.tilegrid.XYZ');
/**
* @classdesc
* Layer source for tile data with URLs in a set XYZ format.
*
* @constructor
* @extends {ol.source.TileImage}
* @param {olx.source.XYZOptions} options XYZ options.

View File

@@ -23,6 +23,9 @@ ol.source.ZoomifyTierSizeCalculation = {
/**
* @classdesc
* Layer source for tile data in Zoomify format.
*
* @constructor
* @extends {ol.source.TileImage}
* @param {olx.source.ZoomifyOptions=} opt_options Options.