X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5c39e5870d5b31262644ef8e7d1b73dbe6f4e0b7..d9d515bf18e85f02c0d11571e298586a90003d77:/app/views/user/view.html.erb diff --git a/app/views/user/view.html.erb b/app/views/user/view.html.erb index 31e9d7585..04c78a900 100644 --- a/app/views/user/view.html.erb +++ b/app/views/user/view.html.erb @@ -104,13 +104,26 @@ <% end -%> <% if @user and @this_user.id == @user.id %> -
- <% if @this_user.home_lat.nil? or @this_user.home_lon.nil? %> + <% if @this_user.home_lat.nil? or @this_user.home_lon.nil? %> +

<%= raw(t 'user.view.if set location', :settings_link => (link_to t('user.view.settings_link_text'), :controller => 'user', :action => 'account', :display_name => @user.display_name)) %>

- <% else %> - <%= render :partial => 'map', :locals => { :setting_location => false, :show_other_users => true } %> +
+ <% else %> + <% content_for :head do %> + <%= javascript_include_tag "user" %> <% end %> -
+ <% + data = { + :lon => @user.home_lon, + :lat => @user.home_lat, + :zoom => 12, + :marker => { + :description => render(:partial => "popup", :object => @user, :locals => {:type => "your location"}) + } + } + %> + <%= content_tag "div", "", :id => "map", :class => "user_map", :data => data %> + <% end %> <% friends = @this_user.friends.collect { |f| f.befriendee } %> <% nearby = @this_user.nearby - friends %> @@ -123,7 +136,7 @@ <%= link_to t('user.view.friends_changesets'), friend_changesets_path %>
<%= link_to t('user.view.friends_diaries'), friend_diaries_path %>

- <%= render :partial => "contact", :collection => friends %> + <%= render :partial => "contact", :collection => friends, :locals => {:type => "friend"} %>
<% end %> @@ -135,7 +148,7 @@ <%= link_to t('user.view.nearby_changesets'), nearby_changesets_path %>
<%= link_to t('user.view.nearby_diaries'), nearby_diaries_path %>

- <%= render :partial => "contact", :collection => nearby %> + <%= render :partial => "contact", :collection => nearby, :locals => {:type => "nearby mapper"} %>
<% end %> <% end %>