X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/33aa0a6e454fb2d43b8ccc07395abf0864d47b66..046fbdc1777e0e9dfd400eb56d560f46bc69ddec:/app/assets/javascripts/application.js diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js index ee9b16ff1..09ae367f4 100644 --- a/app/assets/javascripts/application.js +++ b/app/assets/javascripts/application.js @@ -2,233 +2,132 @@ //= 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.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 - -function zoomPrecision(zoom) { - var decimals = Math.pow(10, Math.floor(zoom/3)); - return function(x) { - return Math.round(x * decimals) / decimals; +//= require querystring + +var querystring = require('querystring-component'); + +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; + + var iframe = $('