Topo2: Fixed a map scaling errors causing nodes to appera like they were incorrectly positioned

Change-Id: I2317526f5be3fe1d60fd244b1c00e9d13cdcb00e
diff --git a/web/gui/src/main/webapp/app/view/topo2/topo2Zoom.js b/web/gui/src/main/webapp/app/view/topo2/topo2Zoom.js
index d52154c..c37c92b 100644
--- a/web/gui/src/main/webapp/app/view/topo2/topo2Zoom.js
+++ b/web/gui/src/main/webapp/app/view/topo2/topo2Zoom.js
@@ -72,8 +72,8 @@
         return zoomer.scale();
     }
 
-    function panAndZoom(translate, scale) {
-        zoomer.panZoom(translate, scale, 1000);
+    function panAndZoom(translate, scale, transition) {
+        zoomer.panZoom(translate, scale, transition);
     }
 
     angular.module('ovTopo2')