X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2b4f8e92c969a5508b73ae7af45811a118fda6b1..87bf5e73d4eccb88aa057fa27be0f482509c8fdf:/app/assets/javascripts/index/browse.js diff --git a/app/assets/javascripts/index/browse.js b/app/assets/javascripts/index/browse.js index 752c84fec..69f6e3bc8 100644 --- a/app/assets/javascripts/index/browse.js +++ b/app/assets/javascripts/index/browse.js @@ -42,8 +42,9 @@ function initializeBrowse(map) { function updateData() { var bounds = map.getBounds(); - getData(!browseBounds || !browseBounds.contains(bounds)); - browseBounds = bounds; + if (!browseBounds || !browseBounds.contains(bounds)) { + getData(); + } } function displayFeatureWarning(count, limit, callback) { @@ -58,7 +59,7 @@ function initializeBrowse(map) { var dataLoader; - function getData(inPrevious) { + function getData() { var bounds = map.getBounds(); var size = bounds.getSize(); @@ -66,11 +67,9 @@ function initializeBrowse(map) { $('#browse_status').html( $("
") .text(I18n.t("browse.start_rjs.unable_to_load_size", { max_bbox_size: OSM.MAX_REQUEST_AREA, bbox_size: size.toFixed(2) }))); - return; + return false; } - if (inPrevious) return; - var url = "/api/" + OSM.API_VERSION + "/map?bbox=" + bounds.toBBoxString(); /* @@ -110,6 +109,7 @@ function initializeBrowse(map) { } dataLoader = null; + browseBounds = bounds; } }); }