From 1a9c41ae4ee3ed1ae72319cbf0f4b56ae344a8b2 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Fri, 28 Apr 2017 08:48:46 +0200 Subject: [PATCH] Add missing goog.require --- src/ol/format/gml2.js | 1 + src/ol/interaction/translate.js | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/ol/format/gml2.js b/src/ol/format/gml2.js index 8c1fb481fb..f9a86e3f2f 100644 --- a/src/ol/format/gml2.js +++ b/src/ol/format/gml2.js @@ -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'); diff --git a/src/ol/interaction/translate.js b/src/ol/interaction/translate.js index 57526896fa..da7bfa9d1e 100644 --- a/src/ol/interaction/translate.js +++ b/src/ol/interaction/translate.js @@ -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');