X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4d91fe3dd95c1058cb8d24fd4c900223e30b9059..66ce4c3b93655abbaef463d9f310c44fa6aed6f1:/app/views/site/_potlatch2.html.erb diff --git a/app/views/site/_potlatch2.html.erb b/app/views/site/_potlatch2.html.erb index 31e15f09d..65ca9210e 100644 --- a/app/views/site/_potlatch2.html.erb +++ b/app/views/site/_potlatch2.html.erb @@ -42,6 +42,7 @@ flashvars.policy = "<%= request.protocol + request.host_with_port %>/api/crossdomain.xml"; flashvars.connection = "XML"; flashvars.show_help = "once"; + flashvars.user_check = "warn"; <% if token %> flashvars.oauth_token = "<%= token.token %>"; flashvars.oauth_token_secret = "<%= token.secret %>"; @@ -63,29 +64,20 @@ // 700,600 for fixed size, 100%,100% for resizable } - <% if params[:node] -%> - <% bbox = Node.find(params[:node]).bbox.to_unscaled -%> - doSWF(<%= bbox.centre_lat %>,<%= bbox.centre_lon %>,16); - <% elsif params[:way] -%> - <% bbox = Way.find(params[:way]).bbox.to_unscaled -%> - doSWF(<%= bbox.centre_lat %>,<%= bbox.centre_lon %>,16); - <% elsif params[:gpx] -%> - <% trace = Trace.find(params[:gpx]) -%> - doSWF(<%= trace.latitude %>,<%= trace.longitude %>,16); + <% if @lat && @lon -%> + doSWF(<%= @lat %>,<%= @lon %>,16); <% else -%> var params = OSM.mapParams(); doSWF(params.lat, params.lon, params.zoom || 17); <% end -%> - $(document).ready(function () { - $("body").on("click", "a.set_position", function () { - var lat = parseFloat($(this).attr("data-lat")); - var lon = parseFloat($(this).attr("data-lon")); - var zoom = parseInt($(this).attr("data-zoom")); + $("body").on("click", "a.set_position", function (e) { + e.preventDefault(); - $("#potlatch").each(function () { - this.setPosition(lat, lon, Math.max(zoom || 15, 13)); - }); + var data = $(this).data(); + + $("#potlatch").each(function () { + this.setPosition(data.lat, data.lon, Math.max(data.zoom || 15, 13)); }); });