<% form_tag :action => "finish" do %>

Area to Export

<%= text_field_tag('maxlat', nil, :size => 10, :class => "export_bound") %>
<%= text_field_tag('minlon', nil, :size => 10, :class => "export_bound") %> <%= text_field_tag('maxlon', nil, :size => 10, :class => "export_bound") %>
<%= text_field_tag('minlat', nil, :size => 10, :class => "export_bound") %>

Manually select a different area

Format to Export

<%= radio_button_tag("format", "osm") %> OpenStreetMap XML Data
<%= radio_button_tag("format", "mapnik") %> Mapnik Image
<%= radio_button_tag("format", "osmarender") %> Osmarender Image
<%= radio_button_tag("format", "html") %> Embeddable HTML

Licence

OpenStreetMap data is licensed under the Creative Commons Attribution-ShareAlike 2.0 license.

Options

Format <%= select_tag("mapnik_format", options_for_select([["PNG", "png"], ["JPEG", "jpeg"], ["SVG", "svg"], ["PDF", "pdf"], ["Postscript", "ps"]], "png")) %>

Scale 1 : <%= text_field_tag("mapnik_scale", nil, :size => 8) %> (max 1 : )

Image Size x

Options

Format <%= select_tag("osmarender_format", options_for_select([["PNG", "png"], ["JPEG", "jpeg"]], "png")) %>

Zoom <%= select_tag("osmarender_zoom", options_for_select([4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17])) %>

Options

Add a marker to the map

Output

Paste HTML to embed in website

<%= submit_tag "Export", :id => "export_commit" %>

<% end %>