Tom Harvey
Tom Harvey
Thanks @msully For me I changed one line in the `L.VectorGrid.Slicer` `initialize` function From... `this._worker = new Worker(workerCode);` To... `this._worker = new Worker(options.workerCode || workerCode);` Then when creating my layer...
@perliedman I've tested in Chrome and it does work yes. Created pull request https://github.com/Leaflet/Leaflet.VectorGrid/pull/109 (Also edited my above comment to remove all of the worker code I unnecessarily copy/pasted in)
Hi guy's, I've submitted a pull request which potentially resolves this issue #78 It removes the max option and instead works it out for itself at each zoom level after...
Hi, I've submitted a pull request #78 which will hopefully resolve this
My problem was that I was using creating multiple grids on the same page. The first grid loaded fine but then it removes the `content` css property from all the...