- Removed forced noteLayer view, now respects current selection just
like an other browse page.
- Made marker replacement it’s own thing, seperate from noteLayer.
- Reduced opacity on noteLayer notes, it makes the selected note stand
out more
var noteLayer = map.noteLayer,
content = $('#sidebar_content'),
page = {},
var noteLayer = map.noteLayer,
content = $('#sidebar_content'),
page = {},
- noteState = map.hasLayer(noteLayer),
- halo;
var noteIcons = {
"new": L.icon({
var noteIcons = {
"new": L.icon({
- function updateNote(marker, form, method, url) {
+ function updateNote(form, method, url) {
$(form).find("input[type=submit]").prop("disabled", true);
$.ajax({
$(form).find("input[type=submit]").prop("disabled", true);
$.ajax({
type: method,
oauth: true,
data: {text: $(form.text).val()},
type: method,
oauth: true,
data: {text: $(form.text).val()},
- success: function (feature) {
- marker = noteLayer.getLayer(marker);
- if (feature.properties.status == "hidden") {
- noteLayer.removeLayer(marker);
- } else if (marker) {
- marker.setIcon(noteIcons[feature.properties.status]);
- }
OSM.loadSidebarContent(window.location.pathname, page.load);
}
});
OSM.loadSidebarContent(window.location.pathname, page.load);
}
});
content.find("input[type=submit]").on("click", function (e) {
e.preventDefault();
var data = $(e.target).data();
content.find("input[type=submit]").on("click", function (e) {
e.preventDefault();
var data = $(e.target).data();
- updateNote(data.noteId, e.target.form, data.method, data.url);
+ updateNote(e.target.form, data.method, data.url);
});
content.find("textarea").on("input", function (e) {
});
content.find("textarea").on("input", function (e) {
content.find("textarea").val('').trigger("input");
var data = $('.details').data();
content.find("textarea").val('').trigger("input");
var data = $('.details').data();
- if (!noteState) map.addLayer(noteLayer);
if (!window.location.hash) {
var coords = data.coordinates.split(',');
OSM.route.moveListenerOff();
map.once('moveend', OSM.route.moveListenerOn);
if (!window.location.hash) {
var coords = data.coordinates.split(',');
OSM.route.moveListenerOff();
map.once('moveend', OSM.route.moveListenerOn);
map.getZoom() > 15 ? map.panTo(coords) : map.setView(coords, 16);
}
map.getZoom() > 15 ? map.panTo(coords) : map.setView(coords, 16);
}
});
map.addLayer(halo);
}
});
map.addLayer(halo);
}
+
+ if (map.hasLayer(currentNote)) map.removeLayer(currentNote);
+ currentNote = L.marker(data.coordinates.split(','), {
+ icon: noteIcons[data.status],
+ opacity: 1,
+ clickable: true
+ });
+ map.addLayer(currentNote);
};
page.unload = function () {
if (map.hasLayer(halo)) map.removeLayer(halo);
};
page.unload = function () {
if (map.hasLayer(halo)) map.removeLayer(halo);
- if (!noteState) map.removeLayer(noteLayer);
+ if (map.hasLayer(currentNote)) map.removeLayer(currentNote);
} else {
marker = L.marker(feature.geometry.coordinates.reverse(), {
icon: noteIcons[feature.properties.status],
} else {
marker = L.marker(feature.geometry.coordinates.reverse(), {
icon: noteIcons[feature.properties.status],
clickable: true
});
marker.id = feature.properties.id;
clickable: true
});
marker.id = feature.properties.id;