hi, I want to get the markers, and set the icon's stye. In Angular, I can do this with that:
// angular
leafletData.getMarkers().then((marker) => {
marker._icon.style[L.DomUtil.TRANSFORM] = marker._icon.style[L.DomUtil.TRANSFORM].split("rotate(")[0];
marker._icon.style[L.DomUtil.TRANSFORM] += 'rotate(' + marker.options.angle + 'deg)';
})
But in vue2leaflet, I have no idea to do this thing.