]> git.openstreetmap.org Git - rails.git/blobdiff - app/controllers/site_controller.rb
Make launching of Potlatch 2 from the GPS trace list work
[rails.git] / app / controllers / site_controller.rb
index 5e77b66910019eb0c5702f61cdd550d7d3a4ff7d..301d4a96641bb6d8557536c8ebf3de00baa600c1 100644 (file)
@@ -49,7 +49,8 @@ class SiteController < ApplicationController
         @zoom = params['zoom'].to_i
 
       elsif params['gpx']
-        #use gpx id to locate (dealt with below)
+        @lon = Trace.find(params['gpx']).longitude
+        @lat = Trace.find(params['gpx']).latitude
 
       elsif cookies.key?("_osm_location")
         @lon, @lat, @zoom, layers = cookies["_osm_location"].split("|")