Files
nodeMap/components/EndIcon.js
2024-07-11 13:11:40 +02:00

11 lines
365 B
JavaScript

// Custom circle icon for draggable markers
import L from "leaflet";
const endIcon = L.divIcon({
className: "custom-end-icon",
html: "<div style='background-color: gray; width: 14px; height: 14px; border: solid black 2px;'></div>", // Graues Viereck
iconSize: [14, 14],
iconAnchor: [7, 7], // Mittelpunkt des Vierecks als Anker
});
export default endIcon;