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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue