1 <% form_tag :action => "finish" do %>
3 <p class="export_heading">Area to Export</p>
5 <div class="export_bounds">
6 <%= text_field_tag('maxlat', nil, :size => 10, :class => "export_bound") %>
8 <%= text_field_tag('minlon', nil, :size => 10, :class => "export_bound") %>
9 <%= text_field_tag('maxlon', nil, :size => 10, :class => "export_bound") %>
11 <%= text_field_tag('minlat', nil, :size => 10, :class => "export_bound") %>
12 <p class="export_hint">
13 Drag a box with control held down to select an area to export
17 <p class="export_heading">Format to Export</p>
19 <div class="export_details">
21 <%= radio_button_tag("format", "osm") %>OpenStreetMap XML Data
23 <%= radio_button_tag("format", "mapnik") %>Mapnik Image
25 <%= radio_button_tag("format", "osmarender") %>Osmarender Image
30 <p class="export_heading">Licence</p>
32 <div class="export_details">
33 <p>OpenStreetMap data is licensed under the <a href="http://creativecommons.org/licenses/by-sa/2.0/">Creative Commons Attribution-ShareAlike 2.0 license</a>.</p>
37 <div id="export_mapnik">
38 <p class="export_heading">Options</p>
40 <div class="export_details">
41 <p>Format <%= select_tag("mapnik_format", options_for_select([["PNG", "png"], ["JPEG", "jpeg"], ["SVG", "svg"], ["PDF", "pdf"], ["Postscript", "ps"]], "png")) %></p>
42 <p>Scale 1 : <%= text_field_tag("mapnik_scale", nil, :size => 8) %> <span class="export_hint">(max 1 : <span id="max_scale"></span>)</span></p>
46 <div id="export_osmarender">
47 <p class="export_heading">Options</p>
49 <div class="export_details">
50 <p>Format <%= select_tag("osmarender_format", options_for_select([["PNG", "png"], ["JPEG", "jpeg"]], "png")) %></p>
51 <p>Zoom <%= select_tag("osmarender_zoom", options_for_select([4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17])) %></p>
55 <div class="export_buttons">
56 <p><%= submit_tag "Export", :id => "export_commit" %></p>
61 <script type="text/javascript">
66 function startExport() {
67 vectors = new OpenLayers.Layer.Vector("Vector Layer", {
68 displayInLayerSwitcher: false
70 map.addLayer(vectors);
72 box = new OpenLayers.Control.DrawFeature(vectors, OpenLayers.Handler.RegularPolygon, {
74 keyMask: OpenLayers.Handler.MOD_CTRL,
79 callbacks: { done: boxComplete }
86 map.events.register("moveend", map, mapMoved);
88 openSidebar({ onclose: stopExport });
90 updateRegion(map.getExtent());
92 if (map.baseLayer.name == "Mapnik") {
93 $("format_mapnik").checked = true;
94 } else if (map.baseLayer.name == "Osmarender") {
95 $("format_osmarender").checked = true;
100 $("viewanchor").className = "";
101 $("exportanchor").className = "active";
104 function stopExport() {
105 $("viewanchor").className = "active";
106 $("exportanchor").className = "";
108 map.events.unregister("moveend", map, mapMoved);
110 map.removeLayer(vectors);
113 function formatChanged() {
114 if ($("format_osm").checked) {
115 $("export_osm").style.display = "inline";
117 $("export_osm").style.display = "none";
120 if ($("format_mapnik").checked) {
121 $("mapnik_scale").value = roundScale(map.getScale());
122 $("export_mapnik").style.display = "inline";
124 $("export_mapnik").style.display = "none";
127 if ($("format_osmarender").checked) {
128 var zoom = Math.min(map.getZoom(), maxOsmarenderZoom());
130 $("osmarender_zoom").options.selectedIndex = zoom - 4;
131 $("export_osmarender").style.display = "inline";
133 $("export_osmarender").style.display = "none";
137 $("format_osm").onclick = function() { formatChanged() };
138 $("format_mapnik").onclick = function() { formatChanged() };
139 $("format_osmarender").onclick = function() { formatChanged() };
141 function boundsChanged() {
142 var epsg4326 = new OpenLayers.Projection("EPSG:4326");
143 var bounds = new OpenLayers.Bounds($("minlon").value,
148 bounds.transform(epsg4326, map.getProjectionObject());
150 map.events.unregister("moveend", map, mapMoved);
151 map.zoomToExtent(bounds);
154 box.handler.feature = new OpenLayers.Feature.Vector(bounds.toGeometry());
155 box.handler.layer.addFeatures([box.handler.feature], [box.handler.style]);
156 box.handler.layer.drawFeature(box.handler.feature, box.handler.style);
159 $("maxlat").onchange = function() { boundsChanged() };
160 $("minlon").onchange = function() { boundsChanged() };
161 $("maxlon").onchange = function() { boundsChanged() };
162 $("minlat").onchange = function() { boundsChanged() };
164 function mapMoved() {
165 updateRegion(map.getExtent());
168 function boxComplete(box) {
169 map.events.unregister("moveend", map, mapMoved);
170 updateRegion(box.getBounds());
173 function updateRegion(bounds) {
174 var epsg4326 = new OpenLayers.Projection("EPSG:4326");
175 var decimals = Math.pow(10, Math.floor(map.getZoom() / 3));
177 bounds.transform(map.getProjectionObject(), epsg4326);
179 $("minlon").value = Math.round(bounds.left * decimals) / decimals;
180 $("minlat").value = Math.round(bounds.bottom * decimals) / decimals;
181 $("maxlon").value = Math.round(bounds.right * decimals) / decimals;
182 $("maxlat").value = Math.round(bounds.top * decimals) / decimals;
184 if (bounds.getWidth() * bounds.getHeight() > 0.25) {
185 $("format_osm").disabled = true;
186 $("format_osm").checked = false;
190 $("format_osm").disabled = false;
193 var max_zoom = maxOsmarenderZoom();
194 var max_scale = maxMapnikScale();
196 $("max_scale").innerHTML = roundScale(max_scale);
198 for (var o = 0; o < $("osmarender_zoom").options.length; o++) {
199 var option = $("osmarender_zoom").options[o];
201 if (option.value > max_zoom) {
202 option.disabled = true;
204 option.disabled = false;
208 if ($("osmarender_zoom").options.selectedIndex + 4 > max_zoom) {
209 $("osmarender_zoom").options.selectedIndex = max_zoom - 4;
213 function maxMapnikScale() {
214 var bounds = new OpenLayers.Bounds($("minlon").value, $("minlat").value, $("maxlon").value, $("maxlat").value);
215 var epsg4326 = new OpenLayers.Projection("EPSG:4326");
216 var epsg900913 = new OpenLayers.Projection("EPSG:900913");
218 bounds.transform(epsg4326, epsg900913);
220 return Math.floor(Math.sqrt(bounds.getWidth() * bounds.getHeight() / 0.3136));
223 function maxOsmarenderZoom() {
224 var bounds = new OpenLayers.Bounds($("minlon").value, $("minlat").value, $("maxlon").value, $("maxlat").value);
225 var xzoom = Math.LOG2E * Math.log(2000 * 1.40625 / bounds.getWidth());
226 var ymin = bounds.bottom * Math.PI / 180;
227 var ymax = bounds.top * Math.PI / 180;
228 var yzoom = Math.LOG2E * (Math.log(2000 * 2 * Math.PI) - Math.log(Math.log((Math.tan(ymax) + 1 / Math.cos(ymax)) / (Math.tan(ymin) + 1 / Math.cos(ymin)))))
230 return Math.floor(Math.min(xzoom, yzoom));
233 function roundScale(scale) {
234 var precision = 5 * Math.pow(10, Math.floor(Math.LOG10E * Math.log(scale)) - 2);
236 return precision * Math.ceil(scale / precision);
239 function validateScale() {
240 if ($("mapnik_scale").value < maxMapnikScale()) {
241 $("export_commit").disabled = true;
243 $("export_commit").disabled = false;
247 $("mapnik_scale").onchange = function() { validateScale() };