importLfrom"leaflet";importcreate,{icons}from"vm-leaflet-icons";// ...// create a gray iconvardefault=create();// create a icon for the 'company' categoryvarcompany=create({category:'company'});// create a icon with shadowvarshadowed=create({category: 'event',shadow:true});// use deafult iconsL.marker([51.5,-0.09],{icon: icons.company}).addTo(map);// ...