-function initializeNotes(map) {
+OSM.initializeNotes = function (map) {
var noteLayer = map.noteLayer,
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
});
noteLoader = null;
}
}
-}
+};