diff --git a/frontend-js/src/main/js/map/CustomMap.js b/frontend-js/src/main/js/map/CustomMap.js
index b0ac7f6fd95dbab5b77e2eff2d2dd56432fdba74..93471c429d544b32a0d5bbfbe01bba43f8a2b75d 100644
--- a/frontend-js/src/main/js/map/CustomMap.js
+++ b/frontend-js/src/main/js/map/CustomMap.js
@@ -252,7 +252,7 @@ CustomMap.prototype.clearOverlayCollection = function(collection) {
  */
 CustomMap.prototype.updateOverlayCollection = function(overlayCollection, fitBounds) {
   this.clearOverlayCollection(overlayCollection);
-  this.renderOverlayCollection(overlayCollection, fitBounds);
+  this.renderOverlayCollection({overlayCollection:overlayCollection, fitBounds:fitBounds});
 };
 
 /**