X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/0509fc8d12fd763e98bc0c8e3a0d2b0ee6a11f9a..b0747c3c1e2c3f437fb5e94e85c2f329680f3ee0:/app/views/site/_potlatch2.html.erb?ds=sidebyside diff --git a/app/views/site/_potlatch2.html.erb b/app/views/site/_potlatch2.html.erb index 31e15f09d..535992f2f 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,15 +64,8 @@ // 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); @@ -79,12 +73,10 @@ $(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")); + var data = $(this).data(); $("#potlatch").each(function () { - this.setPosition(lat, lon, Math.max(zoom || 15, 13)); + this.setPosition(data.lat, data.lon, Math.max(data.zoom || 15, 13)); }); }); });