Greg Allensworth
Greg Allensworth
See issue #43 in which I demonstrate that one may override the `options.vectorTileLayerStyles.layername` with a new object or function, then `redraw()` the layer. This works just beautifully. The only improvement...
I have done what you describe: override/replace the `vectorTileLayerStyles` for a specific layer, then call its `redraw()` in order to apply the new style. ``` // the VectorGrid setup, with...
I would say that `redraw()` is the way to go here. Other GridLayer systems also don't allow refreshing of a single tile, only of the layer as a whole. Same...
No progress on my end, and there may not be for the foreseeable future. As we dug into rendering vector tile data with Leaflet.VectorGrid, we found other issues in Leaflet's...
Thank you @evsheffield for mentioning this. I have a problem with `printMap()` and this Issue was a key to my working around it. Issue: I have a map inside a...
Could you give this a try as `plugin.xml` and let me know whether it works for you? ``` L.TileLayer.Cordova Leaflet TileLayer subclass which caches to local filesystem, for Cordova/Phonegap MIT...
In your screenshot above, I didn't see a clear indication of a *plugin.xml* issue. If the issue were that your IDE requires *plugin.xml*, I would expect that Outsystems would refuse...
@danielkoch I am seeing this same issue. * Use both clustering and spidering * Get into a condition where a spider-able multi-point cluster exists * Zoom in * Note that...
@htsu1 I forgot to mention an important point: That trick only works with a *non-minified* version of the library. When it's minified, the name *formatMarkers* gets minified. It's not practical...
For simple use case with a **L.WMS.Overlay** you may find this simple four-line patch relevant: https://github.com/GreenInfo-Network/leaflet.wms/blob/gh-pages/src/leaflet.wms.js#L405-L412 This is a patch into the **L.WMS.Overlay** `update()` method, to look for a `pane`...