]> git.openstreetmap.org Git - rails.git/blobdiff - app/assets/javascripts/index/browse.js
Remove map data size warning (#592)
[rails.git] / app / assets / javascripts / index / browse.js
index d196476f496c6167af4fe77a8e5ea2b4208910da..47d8418b1ae1e9dd58da5a9e1eeb2f147fb068e0 100644 (file)
@@ -61,15 +61,6 @@ function initializeBrowse(map) {
 
   function getData() {
     var bounds = map.getBounds();
-    var size = bounds.getSize();
-
-    if (size > OSM.MAX_REQUEST_AREA) {
-      $('#browse_status').html(
-        $("<p class='warning'></p>")
-          .text(I18n.t("browse.start_rjs.unable_to_load_size", { max_bbox_size: OSM.MAX_REQUEST_AREA, bbox_size: size.toFixed(2) })));
-      return;
-    }
-
     var url = "/api/" + OSM.API_VERSION + "/map?bbox=" + bounds.toBBoxString();
 
     /*