feat: circle, start and endIcon in components folder for Separation of Concerns (SOC)

This commit is contained in:
ISA
2024-07-08 15:39:51 +02:00
parent f54b78eae1
commit 27c2a8251e
5 changed files with 153 additions and 103 deletions

12
components/CircleIcon.js Normal file
View File

@@ -0,0 +1,12 @@
// /components/CircleIcon.js
import L from "leaflet";
import "leaflet/dist/leaflet.css";
const circleIcon = L.divIcon({
className: "custom-div-icon",
html: "<div style='background-color:#298a00;border-radius:50%;width:10px;height:10px;'></div>",
iconSize: [25, 25],
iconAnchor: [5, 5],
});
export default circleIcon;