leaflet-extra-markers
Version:
Custom map markers for Leaflet JS
24 lines (23 loc) • 926 B
JavaScript
/**
* @name PointPentagon
* @preview 
* @type {Array}
*/
export const PointPentagon = [
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "30",
height: "30",
fill: "currentColor",
viewBox: "0 0 30 30",
},
[
[
"path",
{
d: "M21.72 2a4.14 4.14 0 0 1 3.93 2.76l4.15 12.36a3.93 3.93 0 0 1-1.5 4.48l-10.87 7.64a4.25 4.25 0 0 1-4.86 0L1.7 21.6a3.93 3.93 0 0 1-1.5-4.48L4.35 4.77A4.12 4.12 0 0 1 8.28 2h13.44Z",
},
],
],
];