leaflet-extra-markers
Version:
Custom map markers for Leaflet JS
17 lines (16 loc) • 556 B
JavaScript
/**
* @name PointCircle
* @preview 
* @type {Array}
*/
export const PointCircle = [
"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" }]],
];