quilkin
quilkin
Check out the KmlDocument class in [https://github.com/MKergall/osmbonuspack](url) for a better solution. See my answer at [https://stackoverflow.com/questions/15636303/ ](url) for more details.
I'd like to use the swap plugin (is it [this one](https://github.com/SortableJS/Sortable/tree/master/plugins/Swap)? but don't know how to install it into a vue project. Can someone help?
> @quilkin swap should work out of the box using `:swap="true"` on the component. nothing to install as the plugin is already available in a standard install of sortable.js Thanks...
@david-mohr That sounds good, but I couldn't find one! Can you possibly point me towards it? Thanks
> https://github.com/david-mohr/vue.draggable.next/blob/multidrag/example/components/swap.vue Hmm, not working for me, sorting still happening. ├── @vitejs/[email protected] ├── [email protected] ├── [email protected] ├── [email protected]
This is working for 'onHover' event, using vue-chartjs / vue3 / compostion API: ``` const chart = ref(null) ; .... .... onHover: (e) => { if (chart.value === null) return;...
@jeroenpelgrims Thanks for suggestion - `ChartComponentRef` solved that error but now `getRelativePosition` is complaining: `Argument of type '{ readonly platform: { acquireContext: (canvas: HTMLCanvasElement, options?: CanvasRenderingContext2DSettings | undefined) => CanvasRenderingContext2D...
It's in `devDependencies` of package.json but not in `dependencies` (as are several other type defs). I've moved on a bit from there - I needed to get a list of...
Thanks - but how do I get a handle on the Polyline object when using `new L.GPX()` ? I've now worked around by parsing the GPX data separately to get...
Thanks, but I don't know how to do either of those! I tried adding `addEventListener('addline',routeLineAddHandler)` but the handler isn't called.