mngyng
mngyng
Actually you can. See my workaround here: https://gist.github.com/perliedman/84ce01954a1a43252d1b917ec925b3dd
What I did was copy the required functions from `leaflet.js` and include those onto the server. (Not all of them are needed and some of them are front-end specific, making...
I've got similar thing happening here: https://i.imgur.com/5AHlclA.jpg The problem is that VectorGrid does not render multiple "named layers" in their order when grouped as one Leaflet gridLayer. For example you...
Managed to have a workaround. The source of the problem is that the vector tile server serves those named layers of a tile without taking care of the order of...
@zawarski , I'm posting my entire `createTile()` here. You could probably do a diff among different versions of Leaflet.VectorGrid.bundle.js to find out what's changed. You'll now have to assign a...
Do you have a composite layer, like, having a country border outside of the states border and published them as one vector tile layer? If so, I'm guessing this is...
> Is this fixed? I am facing the same issue. Well I posted a workaround in #167, not sure if that solves your problem. If you're asking for a fix...
Adding zIndex doesn't work for me. Here's one simple solution, though: bring your vector tile to front whenever there's a base layer change: ``` map.on('baselayerchange', function() { if (map.hasLayer(vectorGrid)) {...
I also come across this weird infinite-auth thing. Could be something with Strapi's routing for third-party authentication (my case using Google), particularly the part regarding url-redirect to the frontend. Actually...