]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/site/edit.rhtml
Latest Potlatch, plus TomH's GPX fix
[rails.git] / app / views / site / edit.rhtml
index 20b049198f912e662db4119f94e149f3d66e6192..f6145d67656e3531257667e2476c3ddd49138edd 100644 (file)
@@ -1,8 +1,3 @@
-<p>This editor isn't working yet - currently you can only browse the aerial photos.
-See <a href="http://trac.openstreetmap.org/ticket/402">Trac #402</a> for more details.
-You may also want to look at <a href="http://josm.eigenheimstrasse.de/">JOSM</a> for a
-fully functional desktop client editor for Open Street Map.</p>
-
 <div id="mapcontent">You need a Flash player to use Potlatch, the
     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>.
 
@@ -18,9 +13,10 @@ fully functional desktop client editor for Open Street Map.</p>
       fo.addVariable('token','<%= @user.token %>');
       fo.write("mapcontent");
     }
-<% lon =  params['lon'] || '-0.1' %>
-<% lat =  params['lat'] || '51.5' %>
+<% lon =  params['lon'] || @user.home_lon || '-0.1' %>
+<% lat =  params['lat'] || @user.home_lat || '51.5' %>
+<% zoom =  params['zoom'] || 12 %>
 
-    doSWF(<%= lat %>,<%= lon %>,12);
+    doSWF(<%= lat %>,<%= lon %>,<%= zoom %>);
 
 </script>