Add @classdesc to classes

This commit is contained in:
Peter Robins
2014-06-08 09:48:29 -04:00
parent e08a98b624
commit 41d9f0360a
111 changed files with 369 additions and 40 deletions
+3
View File
@@ -10,6 +10,9 @@ goog.require('ol.proj.Units');
/**
* @classdesc
* Projection object for web/spherical Mercator (EPSG:3857).
*
* @constructor
* @extends {ol.proj.Projection}
* @param {string} code Code.
+3
View File
@@ -7,6 +7,9 @@ goog.require('ol.proj.Units');
/**
* @classdesc
* Projection object for WGS84 geographic coordinates (EPSG:4326).
*
* @constructor
* @extends {ol.proj.Projection}
* @param {string} code Code.
+11
View File
@@ -57,6 +57,17 @@ ol.proj.METERS_PER_UNIT[ol.proj.Units.METERS] = 1;
/**
* @classdesc
* Class for coordinate transforms between coordinate systems. By default,
* OpenLayers ships with the ability to transform coordinates between
* geographic (EPSG:4326) and web or spherical mercator (EPSG:3857)
* coordinate reference systems.
*
* Additional transforms may be added by using the
* {@link http://proj4js.org/|proj4js} library. If the proj4js library is
* included, the <transform> method will work between any two coordinate
* reference systems with proj4js definitions.
*
* @constructor
* @param {olx.ProjectionOptions} options Projection options.
* @struct