2👍
I resolved this problem:
import L from "leaflet";
import 'leaflet-semicircle';
latLng changed by L.latLng
I just didn’t have L function from leaflet
1👍
Sorry, it’s probably not exact answer you need but still.
I see a few options:
1) Check sources https://github.com/vue-leaflet/Vue2Leaflet/blob/master/src/components/LCircle.vue and based on that component create your own (API from Leaflet-semicircle says that is shouldn’t be a headache )
2) Check page https://vue2-leaflet.netlify.com/plugins/ there are a list of plugins. The closest one is probably https://github.com/ais-one/vue2-leaflet-tracksymbol It added another leaflet plugin functionality to vue2leaflet
and by analogy create your own plugin for that
3) the hacky one. You can override the original circle component on leaflet class (I do not recommend to do that, but it’s still an option)