Assorted missing requires

This commit is contained in:
Tim Schaub
2016-08-09 00:58:00 -06:00
parent 4e7e0e5324
commit 274b7285f3
12 changed files with 18 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
goog.provide('ol.source.TileImage'); goog.provide('ol.source.TileImage');
goog.require('ol');
goog.require('ol.ImageTile'); goog.require('ol.ImageTile');
goog.require('ol.TileCache'); goog.require('ol.TileCache');
goog.require('ol.TileState'); goog.require('ol.TileState');

View File

@@ -1,6 +1,7 @@
goog.provide('ol.source.WMTS'); goog.provide('ol.source.WMTS');
goog.provide('ol.source.WMTSRequestEncoding'); goog.provide('ol.source.WMTSRequestEncoding');
goog.require('ol');
goog.require('ol.TileUrlFunction'); goog.require('ol.TileUrlFunction');
goog.require('ol.array'); goog.require('ol.array');
goog.require('ol.extent'); goog.require('ol.extent');

View File

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

View File

@@ -1,5 +1,6 @@
goog.provide('ol.structs.RBush'); goog.provide('ol.structs.RBush');
goog.require('ol');
goog.require('ol.ext.rbush'); goog.require('ol.ext.rbush');
goog.require('ol.extent'); goog.require('ol.extent');
goog.require('ol.obj'); goog.require('ol.obj');

View File

@@ -4,9 +4,11 @@ goog.provide('ol.style.IconOrigin');
goog.provide('ol.style.iconImageCache'); goog.provide('ol.style.iconImageCache');
goog.require('ol'); goog.require('ol');
goog.require('ol.asserts');
goog.require('ol.color');
goog.require('ol.events'); goog.require('ol.events');
goog.require('ol.events.EventType'); goog.require('ol.events.EventType');
goog.require('ol.color'); goog.require('ol.style.IconImage');
goog.require('ol.style.Image'); goog.require('ol.style.Image');
goog.require('ol.style.ImageState'); goog.require('ol.style.ImageState');

View File

@@ -1,5 +1,7 @@
goog.provide('ol.tilegrid'); goog.provide('ol.tilegrid');
goog.require('ol');
goog.require('ol.size');
goog.require('ol.extent'); goog.require('ol.extent');
goog.require('ol.extent.Corner'); goog.require('ol.extent.Corner');
goog.require('ol.obj'); goog.require('ol.obj');

View File

@@ -1,6 +1,7 @@
goog.provide('ol.tilegrid.TileGrid'); goog.provide('ol.tilegrid.TileGrid');
goog.require('ol'); goog.require('ol');
goog.require('ol.asserts');
goog.require('ol.TileRange'); goog.require('ol.TileRange');
goog.require('ol.array'); goog.require('ol.array');
goog.require('ol.extent'); goog.require('ol.extent');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.TileQueue'); goog.provide('ol.TileQueue');
goog.require('ol');
goog.require('ol.events'); goog.require('ol.events');
goog.require('ol.events.EventType'); goog.require('ol.events.EventType');
goog.require('ol.TileState'); goog.require('ol.TileState');

View File

@@ -1,5 +1,7 @@
goog.provide('ol.TileRange'); goog.provide('ol.TileRange');
goog.require('ol.asserts');
/** /**
* A representation of a contiguous block of tiles. A tile range is specified * A representation of a contiguous block of tiles. A tile range is specified

View File

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

View File

@@ -1,5 +1,8 @@
goog.provide('ol.transform'); goog.provide('ol.transform');
goog.require('ol.asserts');
/** /**
* Collection of affine 2d transformation functions. The functions work on an * Collection of affine 2d transformation functions. The functions work on an
* array of 6 elements. The element order is compatible with the [SVGMatrix * array of 6 elements. The element order is compatible with the [SVGMatrix

View File

@@ -1,5 +1,6 @@
goog.provide('ol.VectorTile'); goog.provide('ol.VectorTile');
goog.require('ol');
goog.require('ol.Tile'); goog.require('ol.Tile');
goog.require('ol.TileState'); goog.require('ol.TileState');
goog.require('ol.dom'); goog.require('ol.dom');