X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/6362f60a54689aec51b2741b4c0da460c7f4fa03..796fde85292ed049f190c2f818c1b55b2cc1971d:/app/assets/javascripts/index/browse.js diff --git a/app/assets/javascripts/index/browse.js b/app/assets/javascripts/index/browse.js index 2fa38bca1..07ad64def 100644 --- a/app/assets/javascripts/index/browse.js +++ b/app/assets/javascripts/index/browse.js @@ -1,4 +1,4 @@ -function initializeBrowse(map) { +OSM.initializeBrowse = function (map) { var browseBounds; var selectedLayer; var dataLayer = map.dataLayer; @@ -26,30 +26,17 @@ function initializeBrowse(map) { onSelect(e.layer); }); - dataLayer.on('statechange', function (e) { - if (e.checked) { - if (e.disabled) { - var size = map.getBounds().getSize(); - $('#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) }))); - } else { - $('#browse_status').empty(); - } - } - }); - - map.on('layeradd', function (e) { + map.on("layeradd", function (e) { if (e.layer === dataLayer) { map.on("moveend", updateData); updateData(); } }); - map.on('layerremove', function (e) { + map.on("layerremove", function (e) { if (e.layer === dataLayer) { map.off("moveend", updateData); - $('#browse_status').empty(); + $("#browse_status").empty(); } }); @@ -60,14 +47,22 @@ function initializeBrowse(map) { } } - function displayFeatureWarning(count, limit, callback) { - $('#browse_status').html( - $("") - .text(I18n.t("browse.start_rjs.feature_warning", { num_features: count, max_features: limit })) + function displayFeatureWarning(count, limit, add, cancel) { + $("#browse_status").html( + $("