X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/de5a225a95125db1a66d6dfbaa3a790db9719c18..b6438f5a9e230d5d83f5997de2e5dac7e8152ba4:/app/assets/javascripts/user.js diff --git a/app/assets/javascripts/user.js b/app/assets/javascripts/user.js index b5520aa36..fb4aa0300 100644 --- a/app/assets/javascripts/user.js +++ b/app/assets/javascripts/user.js @@ -1,15 +1,23 @@ +//= require leaflet.locate + $(document).ready(function () { var map = L.map("map", { attributionControl: false, zoomControl: false }).addLayer(new L.OSM.Mapnik()); - L.OSM.zoom() + var position = $('html').attr('dir') === 'rtl' ? 'topleft' : 'topright'; + + L.OSM.zoom({position: position}) .addTo(map); - $("#map").on("resized", function () { - map.invalidateSize(); - }); + L.control.locate({ + position: position, + strings: { + title: I18n.t('javascripts.map.locate.title'), + popup: I18n.t('javascripts.map.locate.popup') + } + }).addTo(map); if (OSM.home) { map.setView([OSM.home.lat, OSM.home.lon], 12); @@ -27,9 +35,13 @@ $(document).ready(function () { map.on("click", function (e) { if ($('#updatehome').is(':checked')) { + var zoom = map.getZoom(), + precision = OSM.zoomPrecision(zoom), + location = e.latlng.wrap(); + $('#homerow').removeClass(); - $('#home_lat').val(e.latlng.lat); - $('#home_lon').val(e.latlng.lng); + $('#home_lat').val(location.lat.toFixed(precision)); + $('#home_lon').val(location.lng.toFixed(precision)); marker.setLatLng(e.latlng); marker.addTo(map);