new support for box=yes param on the homepage, and then link to this from various changeset display

This commit is contained in:
Harry Wood 2009-04-08 16:55:22 +00:00
parent 1f8a68371a
commit fdd5d2d779
7 changed files with 67 additions and 21 deletions

View file

@ -37,18 +37,25 @@
<th>Bounding box:</th>
<% if changeset_details.max_lat.nil? or changeset_details.min_lat.nil? or changeset_details.max_lon.nil? or changeset_details.min_lon.nil? %>
<td>No bounding box has been stored for this changeset.</td>
<% else %>
<%
else
minlon = changeset_details.min_lon/GeoRecord::SCALE.to_f
minlat = changeset_details.min_lat/GeoRecord::SCALE.to_f
maxlon = changeset_details.max_lon/GeoRecord::SCALE.to_f
maxlat = changeset_details.max_lat/GeoRecord::SCALE.to_f
%>
<td>
<table>
<tr>
<td colspan="2" style="text-align:center"><%= changeset_details.max_lat/GeoRecord::SCALE.to_f -%></td>
<td colspan="3" style="text-align:center"><%=maxlat -%></td>
</tr>
<tr>
<td><%= changeset_details.min_lon/GeoRecord::SCALE.to_f -%></td>
<td><%= changeset_details.max_lon/GeoRecord::SCALE.to_f -%></td>
<td><%=minlon -%></td>
<td>(<a href='/?minlon=<%= minlon %>&minlat=<%= minlat %>&maxlon=<%= maxlon %>&maxlat=<%= maxlat %>&box=yes' title='show area box'>box</a>)</td>
<td><%=maxlon -%></td>
</tr>
<tr>
<td colspan="2" style="text-align:center"><%= changeset_details.min_lon/GeoRecord::SCALE.to_f -%></td>
<td colspan="3" style="text-align:center"><%= minlon -%></td>
</tr>
</table>
</td>