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

View File

@@ -18,6 +18,15 @@ ol.ViewHint = {
/**
* @classdesc
* Abstract base class for views.
* Maps can be viewed from different perspectives: 2D or 3D, or at different
* angles. To enable this, properties determining projection, position, angle or
* rotation cannot be part of the map itself, but of the particular view of that
* map. This is similar to the concept of Camera in Google Earth or KML.
*
* Only {@link ol.View2D} is currently implemented.
*
* @constructor
* @implements {ol.IView}
* @extends {ol.Object}