leaflet-extra-markers
Version:
Custom map markers for Leaflet JS
24 lines (23 loc) • 671 B
JavaScript
/**
* @name PointSquare
* @preview 
* @type {Array}
*/
export const PointSquare = [
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "30",
height: "30",
fill: "currentColor",
viewBox: "0 0 30 30",
},
[
[
"path",
{
d: "M24 2a4 4 0 0 1 4 4v18a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h18Z",
},
],
],
];