openstreetmap-website/app/views/geocoder/results.rhtml
2007-06-12 16:51:12 +00:00

33 lines
524 B
Text

<h2>Your Search Results for <%= @place_name.capitalize %></h2>
<table>
<tr>
<th>Name</th>
<th>Country</th>
<th></th>
<th></th>
<th></th>
</tr>
<% @res_ary.each do |hsh| %>
<tr>
<td>
<%= hsh['name'] %>
</td>
<td>
<%= hsh['countryname'] %>
</td>
<td>
<%= link_to('Map', url="/index.html?mlat=#{hsh['lat']}&mlon=#{hsh['lon']}&zoom=12") %>
</td>
<td>
<%= link_to('Edit', url="/edit.html?mlat=#{hsh['lat']}&mlon=#{hsh['lon']}&zoom=12") %>
</td>
<td>
<%= link_to('API', url="/#FIXME") %>
</td>
</tr>
<% end %>
</table>