]> git.openstreetmap.org Git - rails.git/commitdiff
Add link to show a note on the map to the note browser page
authorTom Hughes <tom@compton.nu>
Sun, 3 Feb 2013 17:44:05 +0000 (17:44 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 3 Feb 2013 17:44:05 +0000 (17:44 +0000)
app/assets/javascripts/browse.js
app/views/browse/_map.html.erb
config/locales/en.yml

index 2934b8bd92593c28fa45a2287c896f5e65d71fb3..7149b3481a3ab2e4890c5ac7bf8bd293284a9e6a 100644 (file)
@@ -45,6 +45,8 @@ $(document).ready(function () {
     var centre = bbox.getCenter();
     updatelinks(centre.lon, centre.lat, 16, null, params.minlon, params.minlat, params.maxlon, params.maxlat);
   } else if (params.type == "note") {
+    var object = {type: params.type, id: params.id};
+
     map.setView([params.lat, params.lon], 16);
 
     L.marker([params.lat, params.lon], { icon: getUserIcon() }).addTo(map);
@@ -60,7 +62,8 @@ $(document).ready(function () {
 
     updatelinks(params.lon, params.lat, 16, null, 
                 bbox.getWestLng(), bbox.getSouthLat(),
-                bbox.getEastLng(), bbox.getNorthLat());
+                bbox.getEastLng(), bbox.getNorthLat(),
+                object);
   } else {
     $("#object_larger_map").hide();
     $("#object_edit").hide();
index e0428b4ac938f6468fb64f2d10ab197ea9072b39..ed3cc0faf169b829b828caab84b00ad67a1bce1d 100644 (file)
@@ -22,6 +22,7 @@
      elsif map.instance_of? Note
        data = {
          :type => "note",
+         :id   => map.id,
          :lon  => map.lon,
          :lat  => map.lat
        }
@@ -60,7 +61,7 @@
   </li>
 </ul>
 
-  <% unless map.instance_of? Changeset or map.instance_of? Note %>
+  <% unless map.instance_of? Changeset %>
   <ul class='secondary-actions clearfix'>
     <li>
       <%= link_to t("browse.map.larger." + map.class.to_s.downcase),
index 00bc48097aa9d174d256dbed3fd5e88b4e53f938..3161dc3813fab6c9d7cd25e39ae020d0908eed79 100644 (file)
@@ -158,11 +158,13 @@ en:
         node: "View node on larger map"
         way: "View way on larger map"
         relation: "View relation on larger map"
+        note: "View note on larger map"
       edit:
         area: "Edit area"
         node: "Edit node"
         way: "Edit way"
         relation: "Edit relation"
+        note: "Edit note"
     node_details:
       coordinates: "Coordinates:"
       part_of: "Part of:"