From aa5a08a377a4fe32e4802da4eda365a88c80d80b Mon Sep 17 00:00:00 2001 From: ahocevar Date: Thu, 13 Feb 2014 22:29:20 +0100 Subject: [PATCH] No typecast needed --- src/ol/map.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ol/map.js b/src/ol/map.js index a3f7994643..29740bed46 100644 --- a/src/ol/map.js +++ b/src/ol/map.js @@ -1430,10 +1430,10 @@ ol.Map.createOptionsInternal = function(options) { var deviceOptions = goog.isDef(options.deviceOptions) ? options.deviceOptions : - /** @type {olx.DeviceOptions} */ ({ + { loadTilesWhileAnimating: true, loadTilesWhileInteracting: true - }); + }; var interactions; if (goog.isDef(options.interactions)) {