X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c3cdd4b5d732ae6ea7a65490ed6797190f3f4330..046fbdc1777e0e9dfd400eb56d560f46bc69ddec:/app/assets/javascripts/application.js diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js index fc426e883..09ae367f4 100644 --- a/app/assets/javascripts/application.js +++ b/app/assets/javascripts/application.js @@ -2,55 +2,52 @@ //= require jquery_ujs //= require jquery.timers //= require jquery.cookie +//= require jquery.throttle-debounce +//= require bootstrap.tooltip +//= require bootstrap.dropdown //= require augment +//= require osm //= require leaflet //= require leaflet.osm -//= require leaflet.extend +//= require leaflet.map +//= require leaflet.zoom //= require leaflet.locationfilter //= require i18n/translations //= require oauth -//= require osm //= require piwik -//= require map -//= require menu -//= require sidebar //= require richtext -//= require resize -//= require geocoder //= require querystring var querystring = require('querystring-component'); -function zoomPrecision(zoom) { - var decimals = Math.pow(10, Math.floor(zoom/3)); - return function(x) { - return Math.round(x * decimals) / decimals; +function remoteEditHandler(bbox, object) { + var loaded = false, + url = document.location.protocol === "https:" ? + "https://127.0.0.1:8112/load_and_zoom?" : + "http://127.0.0.1:8111/load_and_zoom?", + query = { + left: bbox.getWest() - 0.0001, + top: bbox.getNorth() + 0.0001, + right: bbox.getEast() + 0.0001, + bottom: bbox.getSouth() - 0.0001 }; -} -function normalBounds(bounds) { - if (bounds instanceof L.LatLngBounds) return bounds; - return new L.LatLngBounds( - new L.LatLng(bounds[0][0], bounds[0][1]), - new L.LatLng(bounds[1][0], bounds[1][1])); -} + if (object) query.select = object.type + object.id; -function remoteEditHandler(bbox, select) { - var loaded = false, - query = { - left: bbox.getWest() - 0.0001, - top: bbox.getNorth() + 0.0001, - right: bbox.getEast() + 0.0001, - bottom: bbox.getSouth() - 0.0001 - }; - - if (select) query.select = select; - $("#linkloader") - .attr("src", "http://127.0.0.1:8111/load_and_zoom?" + querystring.stringify(query)) - .load(function() { loaded = true; }); + var iframe = $('