]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/geocoder_controller.rb
Split out updating a trace into an update action
[rails.git] / app / controllers / geocoder_controller.rb
index 3431fb8d3f8007035abf255136819df2f8ebfec6..d92da72b1d71b4159c66748124fd1c8a841bf425 100644 (file)
@@ -49,6 +49,7 @@ class GeocoderController < ApplicationController
                       :zoom => params[:zoom],
                       :name => "#{lat}, #{lon}")
       end
+
       if lon >= -90 && lon <= 90 && lat >= -180 && lat <= 180
         @results.push(:lat => lon, :lon => lat,
                       :zoom => params[:zoom],
@@ -61,7 +62,6 @@ class GeocoderController < ApplicationController
       else
         render :action => "results"
       end
-
     else
       # Coordinates in a query have come with markers for latitude and longitude.
       if lat < -90 || lat > 90