<% if params['mlon'] and params['mlat'] %>
<% lon = h(params['mlon']) %>
<% lat = h(params['mlat']) %>
-<% zoom = h(params['zoom']) || '12' %>
+<% zoom = h(params['zoom'] || '12') %>
<% elsif @user and params['lon'].nil? and params['lat'].nil? %>
<% lon = @user.home_lon %>
<% lat = @user.home_lat %>
<% zoom = '12' %>
<%else%>
-<% lon = h(params['lon']) || '-0.1' %>
-<% lat = h(params['lat']) || '51.5' %>
-<% zoom = h(params['zoom']) || '12' %>
+<% lon = h(params['lon'] || '-0.1') %>
+<% lat = h(params['lat'] || '51.5') %>
+<% zoom = h(params['zoom'] || '12') %>
<% end %>
<div id="map">You need a Flash player to use Potlatch, the
<a href="http://wiki.openstreetmap.org/index.php/Editing">Several other options</a> are also available
for editing OpenStreetMap.
</div>
-<script type="text/javascript" src="/javascripts/swfobject.js"></script>
+<%= javascript_include_tag 'swfobject.js' %>
<script type="text/javascript">
var brokenContentSize = $("content").offsetWidth == 0;
- var fo = new SWFObject("/potlatch/potlatch.swf?d="+Math.round(Math.random()*1000), "potlatch", "700", "600", "6", "#FFFFFF");
+ var fo = new SWFObject("/potlatch/potlatch.swf?d="+Math.round(Math.random()*1000), "potlatch", "100%", "100%", "6", "#FFFFFF");
+ // 700,600 for fixed size, 100%,100% for resizable
+ var changesaved=true;
+ var winie=false; if (document.all && window.print) { winie=true; }
+
+ window.onbeforeunload=function() {
+ if (!changesaved && !winie) {
+ return "You have unsaved changes. (To save in Potlatch, you should deselect the current way or point.)";
+ }
+ }
function doSWF(lat,lon,sc) {
if (sc < 11) sc = 11;
fo.addVariable('scale',sc);
fo.addVariable('token','<%= session[:token] %>');
<% if params['gpx'] %>
- fo.addVariable('gpx','<%= h(params['gpx']) + "/data" %>');
+ fo.addVariable('gpx','<%= h(params['gpx']) + "/data.xml" %>');
<% end %>
fo.write("map");
}