Giving a tile bounds.

This commit is contained in:
Tim Schaub
2012-06-20 23:36:31 +02:00
parent c9c1f79928
commit f9813616e5

View File

@@ -1,11 +1,14 @@
goog.provide('ol.Tile'); goog.provide('ol.Tile');
goog.require('ol.Bounds');
/** /**
* The Tile class. * The Tile class.
* @constructor * @constructor
* @param {string} url * @param {string} url
* @param {ol.Bounds} bounds
*/ */
ol.Tile = function(url) { ol.Tile = function(url, bounds) {
/** /**
* @private * @private
@@ -13,6 +16,12 @@ ol.Tile = function(url) {
*/ */
this.url_ = url; this.url_ = url;
/**
* @private
* @type {ol.Bounds}
*/
this.bounds_ = bounds;
/** /**
* @private * @private
* @type {Element} * @type {Element}
@@ -35,6 +44,14 @@ ol.Tile.prototype.getUrl = function() {
return this.url_; return this.url_;
}; };
/**
* Get the tile bounds.
* @return {ol.Bounds}
*/
ol.Tile.prototype.getBounds = function() {
return this.bounds_;
};
/** /**
* Get the tile image. * Get the tile image.
* @return {Element} * @return {Element}