X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/a01195f1497b4f4c6b7d019c7affc794d41101cd..1ae7872ed89612353cba641a6b77e86f963789d7:/app/assets/javascripts/index/export.js?ds=sidebyside diff --git a/app/assets/javascripts/index/export.js b/app/assets/javascripts/index/export.js index 01d21cea2..4842fff0c 100644 --- a/app/assets/javascripts/index/export.js +++ b/app/assets/javascripts/index/export.js @@ -1,71 +1,83 @@ -function initializeExport(map) { - if (window.location.pathname == "/export") { - startExport(); +OSM.Export = function(map) { + var page = {}; + + var locationFilter = new L.LocationFilter({ + enableButton: false, + adjustButton: false + }).on("change", update); + + function getBounds() { + return L.latLngBounds( + L.latLng($("#minlat").val(), $("#minlon").val()), + L.latLng($("#maxlat").val(), $("#maxlon").val())); } - function startExport() { - var locationFilter = new L.LocationFilter({ - enableButton: false, - adjustButton: false - }).addTo(map); + function boundsChanged() { + var bounds = getBounds(); - update(); + map.fitBounds(bounds); + locationFilter.setBounds(bounds); - locationFilter.on("change", update); + enableFilter(); + validateControls(); + } - map.on("moveend", update); + function enableFilter(e) { + e.preventDefault(); - $("#maxlat,#minlon,#maxlon,#minlat").change(boundsChanged); + $("#drag_box").hide(); - $("#drag_box").click(enableFilter); + locationFilter.setBounds(map.getBounds().pad(-0.2)); + locationFilter.enable(); + } + + function update() { + setBounds(locationFilter.isEnabled() ? locationFilter.getBounds() : map.getBounds()); + validateControls(); + } + + function setBounds(bounds) { + var precision = zoomPrecision(map.getZoom()); + $("#minlon").val(bounds.getWest().toFixed(precision)); + $("#minlat").val(bounds.getSouth().toFixed(precision)); + $("#maxlon").val(bounds.getEast().toFixed(precision)); + $("#maxlat").val(bounds.getNorth().toFixed(precision)); + } - setBounds(map.getBounds()); + function validateControls() { + $("#export_osm_too_large").toggle(getBounds().getSize() > OSM.MAX_REQUEST_AREA); + $("#export_commit").toggle(getBounds().getSize() < OSM.MAX_REQUEST_AREA); + } - $("#sidebar").one("closed", function () { - map.removeLayer(locationFilter); - map.off("moveend", update); - locationFilter.off("change", update); + page.pushstate = page.popstate = function(path) { + $("#export_tab").addClass("current"); + $("#sidebar_content").load(path, function(a, b, xhr) { + if (xhr.getResponseHeader('X-Page-Title')) { + document.title = xhr.getResponseHeader('X-Page-Title'); + } + page.load(); }); + }; - function getBounds() { - return L.latLngBounds(L.latLng($("#minlat").val(), $("#minlon").val()), - L.latLng($("#maxlat").val(), $("#maxlon").val())); - } + page.load = function() { + map + .addLayer(locationFilter) + .on("moveend", update); - function boundsChanged() { - var bounds = getBounds(); + $("#maxlat, #minlon, #maxlon, #minlat").change(boundsChanged); + $("#drag_box").click(enableFilter); + $("#sidebar_content .close").on("click", page.minimizeSidebar); - map.fitBounds(bounds); - locationFilter.setBounds(bounds); + update(); + }; - enableFilter(); - validateControls(); - } + page.unload = function() { + map + .removeLayer(locationFilter) + .off("moveend", update); - function enableFilter() { - if (!locationFilter.getBounds().isValid()) { - locationFilter.setBounds(map.getBounds().pad(-0.2)); - } + $("#export_tab").removeClass("current"); + }; - $("#drag_box").hide(); - locationFilter.enable(); - } - - function update() { - setBounds(locationFilter.isEnabled() ? locationFilter.getBounds() : map.getBounds()); - validateControls(); - } - - function setBounds(bounds) { - var precision = zoomPrecision(map.getZoom()); - $("#minlon").val(bounds.getWest().toFixed(precision)); - $("#minlat").val(bounds.getSouth().toFixed(precision)); - $("#maxlon").val(bounds.getEast().toFixed(precision)); - $("#maxlat").val(bounds.getNorth().toFixed(precision)); - } - - function validateControls() { - $("#export_osm_too_large").toggle(getBounds().getSize() > OSM.MAX_REQUEST_AREA); - } - } -} + return page; +};