var marker = L.marker(feature.geometry.coordinates.reverse(), {
icon: noteIcons[feature.properties.status],
opacity: 0.9,
- clickable: true
+ interactive: true
});
marker.id = feature.properties.id;
marker.addTo(noteLayer);
currentNote = L.marker(latLng, {
icon: noteIcons[data.status],
opacity: 1,
- clickable: true
+ interactive: true
});
map.addLayer(currentNote);
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);
weight: 4,
opacity: 1,
fillOpacity: 0.5,
- clickable: false
+ interactive: false
};
queryButton.on("click", function (e) {
color: '#FF9500',
opacity: 1,
fillOpacity: 0,
- clickable: false
+ interactive: false
};
this.removeObject();