X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/6206ab7fe75362155c8b9565a1bd512a9f7ce443..ea63736b5c1b6e1d1adbf043f025cc9cb4171bcb:/app/views/site/index.html.erb diff --git a/app/views/site/index.html.erb b/app/views/site/index.html.erb index 8aa318a3f..4b37fc8af 100644 --- a/app/views/site/index.html.erb +++ b/app/views/site/index.html.erb @@ -6,6 +6,7 @@ <% unless STATUS == :api_offline or STATUS == :database_offline -%> <% content_for :editmenu do -%> +
  • <%= link_to t("browse.start_rjs.notes_layer_name"), "#", :id => "show_notes" %>
  • <%= link_to t("browse.start_rjs.data_layer_name"), "#", :id => "show_data" %>
  • <% end -%> <% end -%> @@ -152,10 +153,10 @@ end }); map.addLayer(map.dataLayer); - var noteLayer = addNoteLayer(map, "<%= notes_url :format => 'json' %>", $("#createnoteanchor"), 11); + map.noteLayer = addNoteLayer(map, "<%= notes_url :format => 'json' %>", $("#createnoteanchor"), 11); <% if params[:notes] == "yes" -%> - noteLayer.setVisibility(true); + map.noteLayer.setVisibility(true); <% end -%> <% end %> @@ -206,6 +207,10 @@ end } $(document).ready(function () { + $("#show_notes").click(function () { + map.noteLayer.setVisibility(true); + }); + $("#show_data").click(function () { $.ajax({ url: "<%= url_for :controller => :browse, :action => :start %>" }); });