-function initializeNotes(map) {
+OSM.initializeNotes = function (map) {
var noteLayer = map.noteLayer,
notes = {};
};
map.on("layeradd", function (e) {
- if (e.layer == noteLayer) {
+ if (e.layer === noteLayer) {
loadNotes();
map.on("moveend", loadNotes);
}
}).on("layerremove", function (e) {
- if (e.layer == noteLayer) {
+ if (e.layer === noteLayer) {
map.off("moveend", loadNotes);
noteLayer.clearLayers();
notes = {};
} else {
marker = L.marker(feature.geometry.coordinates.reverse(), {
icon: noteIcons[feature.properties.status],
+ title: feature.properties.comments[0].text,
opacity: 0.8,
- clickable: true
+ interactive: true
});
marker.id = feature.properties.id;
marker.addTo(noteLayer);
noteLoader = null;
}
}
-}
+};