Add link to show a note on the map to the note browser page
This commit is contained in:
parent
104f554008
commit
a51509c668
3 changed files with 8 additions and 2 deletions
|
@ -45,6 +45,8 @@ $(document).ready(function () {
|
|||
var centre = bbox.getCenter();
|
||||
updatelinks(centre.lon, centre.lat, 16, null, params.minlon, params.minlat, params.maxlon, params.maxlat);
|
||||
} else if (params.type == "note") {
|
||||
var object = {type: params.type, id: params.id};
|
||||
|
||||
map.setView([params.lat, params.lon], 16);
|
||||
|
||||
L.marker([params.lat, params.lon], { icon: getUserIcon() }).addTo(map);
|
||||
|
@ -60,7 +62,8 @@ $(document).ready(function () {
|
|||
|
||||
updatelinks(params.lon, params.lat, 16, null,
|
||||
bbox.getWestLng(), bbox.getSouthLat(),
|
||||
bbox.getEastLng(), bbox.getNorthLat());
|
||||
bbox.getEastLng(), bbox.getNorthLat(),
|
||||
object);
|
||||
} else {
|
||||
$("#object_larger_map").hide();
|
||||
$("#object_edit").hide();
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
elsif map.instance_of? Note
|
||||
data = {
|
||||
:type => "note",
|
||||
:id => map.id,
|
||||
:lon => map.lon,
|
||||
:lat => map.lat
|
||||
}
|
||||
|
@ -60,7 +61,7 @@
|
|||
</li>
|
||||
</ul>
|
||||
|
||||
<% unless map.instance_of? Changeset or map.instance_of? Note %>
|
||||
<% unless map.instance_of? Changeset %>
|
||||
<ul class='secondary-actions clearfix'>
|
||||
<li>
|
||||
<%= link_to t("browse.map.larger." + map.class.to_s.downcase),
|
||||
|
|
|
@ -158,11 +158,13 @@ en:
|
|||
node: "View node on larger map"
|
||||
way: "View way on larger map"
|
||||
relation: "View relation on larger map"
|
||||
note: "View note on larger map"
|
||||
edit:
|
||||
area: "Edit area"
|
||||
node: "Edit node"
|
||||
way: "Edit way"
|
||||
relation: "Edit relation"
|
||||
note: "Edit note"
|
||||
node_details:
|
||||
coordinates: "Coordinates:"
|
||||
part_of: "Part of:"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue