]> git.openstreetmap.org Git - rails.git/commitdiff
Remove @midnode assign
authorJohn Firebaugh <john.firebaugh@gmail.com>
Sat, 29 Sep 2012 18:09:01 +0000 (11:09 -0700)
committerTom Hughes <tom@compton.nu>
Sun, 30 Sep 2012 11:19:15 +0000 (12:19 +0100)
It does not appear to be necessary and no other edit links
make use of it. SiteController#edit will calculate a precise
center coordinate.

app/controllers/browse_controller.rb
app/views/browse/way.html.erb

index e3833a7d11669ae45915f7844abcc40b62470deb..e5557280e6ee7f4824a2c8144fbfefebe1c28c6a 100644 (file)
@@ -30,9 +30,6 @@ class BrowseController < ApplicationController
     @way = Way.find(params[:id], :include => [:way_tags, {:changeset => :user}, {:nodes => [:node_tags, {:ways => :way_tags}]}, :containing_relation_members])
     @next = Way.visible.where("id > ?", @way.id).order("id ASC").first
     @prev = Way.visible.where("id < ?", @way.id).order("id DESC").first
     @way = Way.find(params[:id], :include => [:way_tags, {:changeset => :user}, {:nodes => [:node_tags, {:ways => :way_tags}]}, :containing_relation_members])
     @next = Way.visible.where("id > ?", @way.id).order("id ASC").first
     @prev = Way.visible.where("id < ?", @way.id).order("id DESC").first
-
-    # Used for edit link, takes approx middle node of way
-    @midnode = @way.nodes[@way.nodes.length/2]
   rescue ActiveRecord::RecordNotFound
     render :action => "not_found", :status => :not_found
   end
   rescue ActiveRecord::RecordNotFound
     render :action => "not_found", :status => :not_found
   end
index 167ac6959f02fb14aec6a301e3e40a8c2d62ba5a..aa7b5d0b758ee2872b45d667a57e9a813e0a2cd4 100644 (file)
@@ -12,6 +12,4 @@
 <hr />
 <%= link_to(t('browse.way.download_xml'), :controller => "way", :action => "read") %>
 | <%= link_to(t('browse.way.view_history'), :action => "way_history") %>
 <hr />
 <%= link_to(t('browse.way.download_xml'), :controller => "way", :action => "read") %>
 | <%= link_to(t('browse.way.view_history'), :action => "way_history") %>
-<% unless @midnode.nil? -%>
-| <%= link_to(t('browse.way.edit'), :controller => "site", :action => "edit", :way => @way.id, :lat => @midnode.lat, :lon => @midnode.lon, :zoom => 16) %>
-<% end -%>
+| <%= link_to(t('browse.way.edit'), :controller => "site", :action => "edit", :way => @way.id) %>