+ <% if @user and !@user.home_lon.nil? and !@user.home_lat.nil? -%>
+ OSM.home = <%= { :lat => @user.home_lat, :lon => @user.home_lon }.to_json.html_safe %>;
+ <% end -%>
+ <% if session[:location] -%>
+ OSM.location = <%= session[:location].to_json.html_safe %>;
+ <% end -%>
+ OSM.preferred_editor = <%= preferred_editor.to_json.html_safe %>;
+ <% if @oauth -%>
+ OSM.oauth_token = "<%= @oauth.token %>";
+ OSM.oauth_token_secret = "<%= @oauth.secret %>";
+ OSM.oauth_consumer_key = "<%= @oauth.client_application.key %>";
+ OSM.oauth_consumer_secret = "<%= @oauth.client_application.secret %>";
+ <% end -%>