]> git.openstreetmap.org Git - rails.git/commitdiff
Show the current location when editing a diary entry with a location
authorTom Hughes <tom@compton.nu>
Mon, 1 Aug 2011 15:59:40 +0000 (16:59 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 1 Aug 2011 15:59:40 +0000 (16:59 +0100)
app/views/diary_entry/edit.html.erb

index 122c4e4348512ae3a9f374eedafcabf39ddcf57c..b5abd667b3bb148a596e9f7065328823f08a9f90 100644 (file)
   </table>
 <% end %>
 
-<% if @user.home_lat.nil? or @user.home_lon.nil? %>
+<% if @diary_entry.latitude and @diary_entry.longitude %>
+  <% lon = @diary_entry.longitude %>
+  <% lat = @diary_entry.latitude %>
+  <% zoom = '12' %>
+<% elsif @user.home_lat.nil? or @user.home_lon.nil? %>
   <% lon = h(params['lon'] || '-0.1') %>
   <% lat = h(params['lat'] || '51.5') %>
   <% zoom = h(params['zoom'] || '4') %> 
 
     setMapCenter(centre, zoom);
 
+    <% if @diary_entry.latitude and @diary_entry.longitude %>
+    marker = addMarkerToMap(centre, null, "<%= t 'diary_entry.edit.marker_text' -%>");
+    <% end %>
+
     map.events.register("click", map, setLocation);
   }
 // -->