Merge pull request #5838 from marcjansen/more-requires

Require ol where ol.DEBUG is being used
This commit is contained in:
Marc Jansen
2016-09-14 07:58:18 +02:00
committed by GitHub
16 changed files with 19 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
goog.provide('ol.array');
goog.require('ol');
/**
* Performs a binary search on the provided sorted list and returns the index of the item if found. If it can't be found it'll return -1.

View File

@@ -2,6 +2,7 @@ goog.provide('ol.extent');
goog.provide('ol.extent.Corner');
goog.provide('ol.extent.Relationship');
goog.require('ol');
goog.require('ol.asserts');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.geom.flat.closest');
goog.require('ol');
goog.require('ol.math');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.geom.flat.contains');
goog.require('ol');
goog.require('ol.extent');

View File

@@ -1,5 +1,7 @@
goog.provide('ol.geom.flat.deflate');
goog.require('ol');
/**
* @param {Array.<number>} flatCoordinates Flat coordinates.

View File

@@ -1,5 +1,6 @@
goog.provide('ol.geom.flat.geodesic');
goog.require('ol');
goog.require('ol.math');
goog.require('ol.proj');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.geom.flat.interiorpoint');
goog.require('ol');
goog.require('ol.array');
goog.require('ol.geom.flat.contains');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.geom.flat.interpolate');
goog.require('ol');
goog.require('ol.array');
goog.require('ol.math');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.geom.flat.intersectsextent');
goog.require('ol');
goog.require('ol.extent');
goog.require('ol.geom.flat.contains');
goog.require('ol.geom.flat.segments');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.Graticule');
goog.require('ol');
goog.require('ol.extent');
goog.require('ol.geom.GeometryLayout');
goog.require('ol.geom.LineString');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.math');
goog.require('ol');
goog.require('ol.asserts');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.structs.LRUCache');
goog.require('ol');
goog.require('ol.asserts');
goog.require('ol.obj');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.structs.PriorityQueue');
goog.require('ol');
goog.require('ol.asserts');
goog.require('ol.obj');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.style.IconImageCache');
goog.require('ol');
goog.require('ol.color');

View File

@@ -1,5 +1,7 @@
goog.provide('ol.tilecoord');
goog.require('ol');
/**
* @param {string} str String that follows pattern “z/x/y” where x, y and z are

View File

@@ -1,5 +1,6 @@
goog.provide('ol.TileUrlFunction');
goog.require('ol');
goog.require('ol.asserts');
goog.require('ol.math');
goog.require('ol.tilecoord');