Add missing Closure Library requires

This commit is contained in:
Tom Payne
2013-04-05 22:10:16 +02:00
parent 12a6d6b43f
commit 4be8c991f7
76 changed files with 135 additions and 3 deletions

View File

@@ -2,6 +2,8 @@ goog.provide('ol.source.BingMaps');
goog.require('goog.Uri');
goog.require('goog.array');
goog.require('goog.asserts');
goog.require('goog.math');
goog.require('goog.net.Jsonp');
goog.require('ol.Attribution');
goog.require('ol.Extent');

View File

@@ -1,5 +1,7 @@
goog.provide('ol.source.DebugTileSource');
goog.require('goog.dom');
goog.require('goog.dom.TagName');
goog.require('ol.Size');
goog.require('ol.Tile');
goog.require('ol.TileCache');

View File

@@ -1,6 +1,7 @@
goog.provide('ol.source.ImageSource');
goog.require('goog.array');
goog.require('goog.asserts');
goog.require('ol.Attribution');
goog.require('ol.Extent');
goog.require('ol.Image');

View File

@@ -1,6 +1,7 @@
goog.provide('ol.source.ImageTileSource');
goog.provide('ol.source.ImageTileSourceOptions');
goog.require('goog.asserts');
goog.require('ol.Attribution');
goog.require('ol.Extent');
goog.require('ol.ImageTile');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.source.Stamen');
goog.require('goog.asserts');
goog.require('ol.Attribution');
goog.require('ol.source.XYZ');

View File

@@ -2,8 +2,8 @@
goog.provide('ol.source.TiledWMS');
goog.require('goog.array');
goog.require('goog.math');
goog.require('ol.Extent');
goog.require('ol.TileCoord');
goog.require('ol.TileUrlFunction');

View File

@@ -10,6 +10,7 @@ goog.provide('ol.source.TileJSON');
goog.provide('ol.tilejson');
goog.require('goog.asserts');
goog.require('goog.math');
goog.require('goog.net.jsloader');
goog.require('ol.Attribution');
goog.require('ol.Extent');

View File

@@ -1,5 +1,8 @@
goog.provide('ol.source.wms');
goog.require('goog.object');
goog.require('goog.uri.utils');
/**
* @param {string} baseUrl WMS base url.

View File

@@ -1,7 +1,11 @@
goog.provide('ol.source.WMTS');
goog.provide('ol.source.WMTSRequestEncoding');
goog.require('ol.Attribution');
goog.require('goog.array');
goog.require('goog.asserts');
goog.require('goog.math');
goog.require('goog.object');
goog.require('goog.uri.utils');
goog.require('ol.TileCoord');
goog.require('ol.TileUrlFunction');
goog.require('ol.TileUrlFunctionType');