1 <% if API_STATUS == :offline %>
2 <p>The OpenStreetMap database is currently offline while
3 essential database maintenance work is carried out.
5 <% elsif API_STATUS == :readonly %>
6 <p>The OpenStreetMap database is currently in read-only mode while
7 essential database maintenance work is carried out.
9 <% elsif !@user.data_public? %>
10 <p>You haven't set your edits to be public.</p>
11 <p>You can't use the online editor unless you do so. You can set your edits as public from your
12 <%= link_to 'user page', {:controller => 'user', :action => 'account', :display_name => @user.display_name}%>.</p>
13 <p>(<a href="http://wiki.openstreetmap.org/index.php/Disabling_anonymous_edits">Find out why this is the case.</a>)</p>
15 <% content_for :greeting do %>
16 <% if @user and !@user.home_lon.nil? and !@user.home_lat.nil? %>
17 <%= link_to_function 'home', "setPosition(#{@user.home_lat}, #{@user.home_lon}, 10)" %> |
21 <%= render :partial => 'sidebar', :locals => { :onopen => "resizeMap();", :onclose => "resizeMap();" } %>
22 <%= render :partial => 'search' %>
24 <% session[:token] = @user.tokens.create.token unless session[:token] %>
26 <% if params['mlon'] and params['mlat'] %>
27 <% lon = h(params['mlon']) %>
28 <% lat = h(params['mlat']) %>
29 <% zoom = h(params['zoom'] || '12') %>
30 <% elsif @user and params['lon'].nil? and params['lat'].nil? %>
31 <% lon = @user.home_lon %>
32 <% lat = @user.home_lat %>
35 <% lon = h(params['lon'] || '-0.1') %>
36 <% lat = h(params['lat'] || '51.5') %>
37 <% zoom = h(params['zoom'] || '12') %>
40 <div id="map">You need a Flash player to use Potlatch, the
41 OpenStreetMap Flash editor. You can <a href="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">download Flash Player from Adobe.com</a>.
43 <a href="http://wiki.openstreetmap.org/index.php/Editing">Several other options</a> are also available
44 for editing OpenStreetMap.
46 <%= javascript_include_tag 'swfobject.js' %>
47 <script type="text/javascript" defer="defer">
48 var brokenContentSize = $("content").offsetWidth == 0;
49 var fo = new SWFObject("/potlatch/potlatch.swf?d="+Math.round(Math.random()*1000), "potlatch", "100%", "100%", "6", "#FFFFFF");
50 // 700,600 for fixed size, 100%,100% for resizable
52 var winie=false; if (document.all && window.print) { winie=true; }
54 window.onbeforeunload=function() {
55 if (!changesaved && !winie) {
56 return "You have unsaved changes. (To save in Potlatch, you should deselect the current way or point.)";
60 function doSWF(lat,lon,sc) {
62 fo.addVariable('lat',lat);
63 fo.addVariable('long',lon);
64 fo.addVariable('scale',sc);
65 fo.addVariable('token','<%= session[:token] %>');
66 <% if params['gpx'] %>
67 fo.addVariable('gpx','<%= h(params['gpx']) + "/data.xml" %>');
72 doSWF(<%= lat %>,<%= lon %>,<%= zoom %>);
74 function setPosition(lat, lon, zoom) {
75 doSWF(lat, lon, zoom);
78 function resizeContent() {
79 var content = $("content");
80 var rightMargin = parseInt(getStyle(content, "right"));
81 var bottomMargin = parseInt(getStyle(content, "bottom"));
83 content.style.width = document.documentElement.clientWidth - content.offsetLeft - rightMargin;
84 content.style.height = document.documentElement.clientHeight - content.offsetTop - bottomMargin;
87 function resizeMap() {
88 var sidebar_width = $("sidebar").offsetWidth;
90 if (sidebar_width > 0) {
91 sidebar_width = sidebar_width + 5
94 $("map").style.left = (sidebar_width) + "px";
95 $("map").style.width = ($("content").offsetWidth - sidebar_width) + "px";
96 $("map").style.height = ($("content").offsetHeight - 2) + "px";
99 function handleResize() {
100 if (brokenContentSize) {
109 window.onload = handleResize;
110 window.onresize = handleResize;