add ol.PixelBounds
This commit is contained in:
@@ -0,0 +1,19 @@
|
|||||||
|
goog.provide('ol.PixelBounds');
|
||||||
|
|
||||||
|
goog.require('goog.asserts');
|
||||||
|
goog.require('ol.Rectangle');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @constructor
|
||||||
|
* @extends {ol.Rectangle}
|
||||||
|
* @param {number} minX Minimum X.
|
||||||
|
* @param {number} minY Minimum Y.
|
||||||
|
* @param {number} maxX Maximum X.
|
||||||
|
* @param {number} maxY Maximum Y.
|
||||||
|
*/
|
||||||
|
ol.PixelBounds = function(minX, minY, maxX, maxY) {
|
||||||
|
goog.base(this, minX, minY, maxX, maxY);
|
||||||
|
};
|
||||||
|
goog.inherits(ol.PixelBounds, ol.Rectangle);
|
||||||
Reference in New Issue
Block a user