13 lines
430 B
JavaScript
13 lines
430 B
JavaScript
// Custom circle icon for draggable markers
|
|
// Custom triangle icon for draggable markers
|
|
import L from "leaflet";
|
|
|
|
const startIcon = L.divIcon({
|
|
className: "custom-start-icon",
|
|
html: "<div style='width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-bottom: 14px solid gray;'></div>", // Graues Dreieck
|
|
iconSize: [10, 10],
|
|
iconAnchor: [8, 8],
|
|
});
|
|
|
|
export default startIcon;
|