Per Liedman
Per Liedman
@maissenayed hard to tell without seeing it running, but my guess is that you are using a newer version of the Turf modules, which are written with ES modules in...
I would just check in devtools what `explode` is actually set to, it should be pretty straight forward to debug.
Hi! Any chance you can share your network, or part of it, that reproduces the problem? It's really hard to track things like these down without a clear example that...
No, since it's built on modules (CommonJS), you have to bundle it to use in a browser. Having a way to easily create a bundle is a good idea and...
Hi, it would definitely be interesting to incorporate something like this, but at the moment there is no support: all vertices that are sufficiently close will be considered as a...
@joptimus the key is that your weight function has to return an object with different `forward` and `backward` components - setting one of them to zero prevents it from being...
Ok, it sounds like you have to take some care when modelling the GeoJSON. The way geojson-path-finder works, it can only make turns where two `LineString`s meet - where the...
Ah, I see, I missed the obvious thing where the vehicle is already in a certain direction on a road, and can't make a U-turn initially. The first example looks...
Hi! The problem with these changes are that if I understand correctly, it will *only* work with `MultiLineString`s. It would be reasonable to make the library support `MultLineString`, but without...
Sounds reasonable. The problem comes from the fact that [class is only set in `_initPath`](https://github.com/Leaflet/Leaflet/blob/67100000fa93516f92094f836fd7282302ab5b36/src/layer/vector/SVG.js#L46-L58) but not when `_updateStyle` is called. Fixing this would take a little work, since `_updateStyle`...