Add missing goog.require('ol')

This commit is contained in:
Frederic Junod
2016-08-15 09:49:04 +02:00
parent 793ec85b9d
commit d4ad9ad616
60 changed files with 61 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
goog.provide('ol.interaction.DoubleClickZoom');
goog.require('ol');
goog.require('ol.MapBrowserEvent.EventType');
goog.require('ol.interaction.Interaction');

View File

@@ -3,6 +3,7 @@
goog.provide('ol.interaction.DragAndDrop');
goog.provide('ol.interaction.DragAndDropEvent');
goog.require('ol');
goog.require('ol.functions');
goog.require('ol.events');
goog.require('ol.events.Event');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.interaction.DragPan');
goog.require('ol');
goog.require('ol.View');
goog.require('ol.coordinate');
goog.require('ol.events.condition');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.interaction.DragZoom');
goog.require('ol');
goog.require('ol.animation');
goog.require('ol.easing');
goog.require('ol.events.condition');

View File

@@ -3,6 +3,7 @@ goog.provide('ol.interaction.DrawEvent');
goog.provide('ol.interaction.DrawEventType');
goog.provide('ol.interaction.DrawMode');
goog.require('ol');
goog.require('ol.events');
goog.require('ol.events.Event');
goog.require('ol.Feature');

View File

@@ -1,5 +1,6 @@
goog.provide('ol.interaction.KeyboardZoom');
goog.require('ol');
goog.require('ol.events.EventType');
goog.require('ol.events.condition');
goog.require('ol.interaction.Interaction');

View File

@@ -2,6 +2,7 @@ goog.provide('ol.interaction.Select');
goog.provide('ol.interaction.SelectEvent');
goog.provide('ol.interaction.SelectEventType');
goog.require('ol');
goog.require('ol.asserts');
goog.require('ol.functions');
goog.require('ol.Collection');

View File

@@ -1,6 +1,7 @@
goog.provide('ol.interaction.Translate');
goog.provide('ol.interaction.TranslateEvent');
goog.require('ol');
goog.require('ol.events.Event');
goog.require('ol.array');
goog.require('ol.interaction.Pointer');