Remove ol.Bounds
This commit is contained in:
@@ -1,7 +1,6 @@
|
|||||||
goog.provide('ol');
|
goog.provide('ol');
|
||||||
|
|
||||||
goog.require('ol.Array');
|
goog.require('ol.Array');
|
||||||
goog.require('ol.Bounds');
|
|
||||||
goog.require('ol.Extent');
|
goog.require('ol.Extent');
|
||||||
goog.require('ol.Layer');
|
goog.require('ol.Layer');
|
||||||
goog.require('ol.LayerRenderer');
|
goog.require('ol.LayerRenderer');
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
goog.provide('ol.Bounds');
|
|
||||||
|
|
||||||
goog.require('goog.math.Box');
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @constructor
|
|
||||||
* @extends {goog.math.Box}
|
|
||||||
* @param {number} top Top.
|
|
||||||
* @param {number} right Right.
|
|
||||||
* @param {number} bottom Bottom.
|
|
||||||
* @param {number} left Left.
|
|
||||||
*/
|
|
||||||
ol.Bounds = function(top, right, bottom, left) {
|
|
||||||
|
|
||||||
goog.base(this, top, right, bottom, left);
|
|
||||||
|
|
||||||
};
|
|
||||||
goog.inherits(ol.Bounds, goog.math.Box);
|
|
||||||
Reference in New Issue
Block a user