// /components/gisPolylines/icons/EndIcon.js // Viereck als End-Icon für die Route import L from "leaflet"; const EndIcon = L.divIcon({ className: "custom-end-icon", html: "
", // Graues Viereck iconSize: [14, 14], iconAnchor: [7, 7], // Mittelpunkt des Vierecks als Anker }); export default EndIcon;