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