diff --git a/components/StartIcon.js b/components/StartIcon.js index 69907b805..552541ebf 100644 --- a/components/StartIcon.js +++ b/components/StartIcon.js @@ -1,12 +1,16 @@ -// 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: "
", // Graues Dreieck - iconSize: [10, 10], - iconAnchor: [8, 8], + html: ` + + + + + `, // Schwarzes Dreieck innerhalb eines grauen Dreiecks + iconSize: [18, 18], + iconAnchor: [9, 18], }); export default startIcon;