Max
Max
@danielcavanagh as far as I know options is not fully reactive. It could be possible that it updates, but it id hard to watch the change as leaflet is not...
Are there any updates on that? @lateek35 I am also looking for that behaviour as mentioned. I am currently rewriting a module and need to do some breaking changes. As...
I've been experimenting with a few different approaches First off, with the current `package.json` setup it is not possible to get tree-shaking. To enable tree-shaking you need to explicitly set...
I tried exporting each package: 1. `import * as L from 'leaflet'` with `console.log(L)` to get the total size 2. `import {version} from 'leaflet'` with `console.log(version)` to get the tree-shaked...
> I think as long as we have cross refrences with include, we will not get real tree shaking. > > [Leaflet/src/layer/Tooltip.js](https://github.com/Leaflet/Leaflet/blob/d261e1615ae03f9c909bacfebbfc3e30f5b58f00/src/layer/Tooltip.js#L229) > > Line 229 in [d261e16](/Leaflet/Leaflet/commit/d261e1615ae03f9c909bacfebbfc3e30f5b58f00) > >...
Unfortunately, no, it needs major changes to make it fully working. There are some easy ways for a first step and postpone everything else as leaflet is already very small....
I don't know if that's the best way. By moving the `*.includes` to the respective classes we reduce the maintainability and additionally add functionality that we don't need for every...
Hi @nfreear there is a draft PR which addresses the issue with some kind mixins (see #9919). There is also an experimental flag to show the first side-effect in every...
Hey, I have seen your progress. I tested a single component (`Popup`) with treeshaking. First of all, there is a need to use the `Leaflet.js` as the entry file `LeafletWithGlobals...
I started working on a fork with the composition api and leaflet v2. I also added the LVideoOverlay component. [maxel01@[email protected]](https://github.com/Maxel01/vue-leaflet/releases/tag/v1.0.0-alpha.1)