leaflet-extra-markers
Version:
Custom map markers for Leaflet JS
28 lines (27 loc) • 1.04 kB
JavaScript
/**
* @name PointCircleBorder2
* @preview 
* @type {Array}
*/
export const PointCircleBorder2 = [
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "30",
height: "30",
fill: "currentColor",
viewBox: "0 0 30 30",
},
[
["path", { d: "M15 1a14 14 0 1 1 0 28 14 14 0 0 1 0-28Z" }],
[
"path",
{
fill: "#fff",
"fill-rule": "evenodd",
d: "M15 1a14 14 0 1 1 0 28 14 14 0 0 1 0-28Zm0 1.87a12.13 12.13 0 1 0 0 24.26 12.13 12.13 0 0 0 0-24.26Z",
"clip-rule": "evenodd",
},
],
],
];