import L from 'leaflet' function pinIcon(color: string) { return L.divIcon({ className: '', html: ``, iconSize: [24, 24], iconAnchor: [12, 24], popupAnchor: [0, -24], }) } export const pointIconGreen = pinIcon('#1ed013') export const pointIconBlue = pinIcon('#228be6') export const pointIconRed = pinIcon('#fa5252') export const defaultIcon = new L.Icon({ iconUrl: 'https://unpkg.com/leaflet@1.7.1/dist/images/marker-icon.png', iconSize: [25, 41], iconAnchor: [12, 41], popupAnchor: [1, -34], })