Add missing goog.require

This commit is contained in:
Frederic Junod
2017-04-28 08:48:46 +02:00
committed by Tim Schaub
parent 10aebb58d2
commit 1a9c41ae4e
2 changed files with 3 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ goog.require('ol.extent');
goog.require('ol.format.Feature');
goog.require('ol.format.GMLBase');
goog.require('ol.format.XSD');
goog.require('ol.geom.Geometry');
goog.require('ol.obj');
goog.require('ol.proj');
goog.require('ol.xml');

View File

@@ -2,11 +2,13 @@ goog.provide('ol.interaction.Translate');
goog.require('ol');
goog.require('ol.Collection');
goog.require('ol.Object');
goog.require('ol.events');
goog.require('ol.events.Event');
goog.require('ol.functions');
goog.require('ol.array');
goog.require('ol.interaction.Pointer');
goog.require('ol.interaction.Property');
goog.require('ol.interaction.TranslateEventType');