openstreetmap-website/app/views/site/edit.rhtml
2007-04-07 12:57:12 +00:00

21 lines
1.1 KiB
Text

note that this copy of potlatch is coming off of richards dev account and isn't speaking to your local API as it hasn't been integrated yet.<br>
FIXME integrate potlatch properly.
<div id="mapcontent">Sorry, 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>.
<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="http://richard.dev.openstreetmap.org/potlatch/swfobject.js"></script>
<script type="text/javascript">
var fo = new SWFObject("http://richard.dev.openstreetmap.org/potlatch/potlatch.swf", "potlatch", "700", "600", "6", "#FFFFFF");
function doSWF(lat,lon,sc) {
fo.addVariable('lat',lat);
fo.addVariable('long',lon);
fo.addVariable('scale',sc);
fo.addVariable('token','tokenstring');
fo.write("mapcontent");
}
doSWF(52.2,-2.2,12);
</script>