minor doc string additions to ol.Tile

This commit is contained in:
Éric Lemoine
2012-06-19 15:01:50 +02:00
parent ce20ba066c
commit 79af86bde5

View File

@@ -1,12 +1,14 @@
goog.provide('ol.Tile'); goog.provide('ol.Tile');
/** /**
* The Tile class.
* @constructor * @constructor
*/ */
ol.Tile = function() { ol.Tile = function() {
/** /**
* @private * @private
* @type {Element}
*/ */
this.img_ = ol.Tile.createImage(); this.img_ = ol.Tile.createImage();
}; };