]> git.openstreetmap.org Git - rails.git/commitdiff
Update user location setting for zoomPrecision change
authorTom Hughes <tom@compton.nu>
Sun, 4 Aug 2013 11:40:20 +0000 (12:40 +0100)
committerTom Hughes <tom@compton.nu>
Sun, 4 Aug 2013 11:40:20 +0000 (12:40 +0100)
app/assets/javascripts/user.js

index 7de408b20506eb545ce0b359c3768ef7af828e0c..d31f5bb82679f2ae6415631876820fab9401141c 100644 (file)
@@ -24,12 +24,12 @@ $(document).ready(function () {
     map.on("click", function (e) {
       if ($('#updatehome').is(':checked')) {
         var zoom = map.getZoom(),
-            toZoom = zoomPrecision(zoom),
+            precision = zoomPrecision(zoom),
             location = e.latlng.wrap();
 
         $('#homerow').removeClass();
-        $('#home_lat').val(toZoom(location.lat));
-        $('#home_lon').val(toZoom(location.lng));
+        $('#home_lat').val(location.lat.toFixed(precision));
+        $('#home_lon').val(location.lng.toFixed(precision));
 
         marker.setLatLng(e.latlng);
         marker.addTo(map);