end
def edit
- editor = @user.preferred_editor || DEFAULT_EDITOR
+ editor = params[:editor] || @user.preferred_editor || DEFAULT_EDITOR
- if editor == "josm"
+ if editor == "remote"
render :action => :index
else
# Decide on a lat lon to initialise potlatch with. Various ways of doing this
@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("|")