} else {
marker = L.marker(feature.geometry.coordinates.reverse(), {
icon: noteIcons[feature.properties.status],
- title: feature.properties.comments && feature.properties.comments[0] ?
- feature.properties.comments[0].text : undefined,
+ title: feature.properties.comments[0].text,
opacity: 0.8,
- clickable: true
+ interactive: true
});
marker.id = feature.properties.id;
marker.addTo(noteLayer);