geojson-path-finder
geojson-path-finder copied to clipboard
FeatureCollection of multiple LineString features
Hi, I've found your package and it's really awesome! But, is possible to apply pathFinder function on featureCollection of miltiplne lineStrings ? Because it seems that's not working. I'm working on Indoor Navigation based on QRcodes and I want to create big graph, where can I search shortest way.
Hi,
yes, it should work with a FeatureCollection
on multiple LineString
s. In fact, that's exactly the data I use it for.
For example, check out this GeoJSON that we use in the tests: https://raw.githubusercontent.com/perliedman/geojson-path-finder/master/test/network.json
If this causes trouble, please provide some more details about your GeoJSON and the issue you're seeing.
Hi, i have the same issue where i tried your test data with , but i always have an error in the turf explode function
@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 mind. This means that the functions from Turf should now be imported like this:
var explode = require('@turf/explode').default;
Might this be the problem?
i tried that but still the same problem , i'm using mapbox-draw-plugin ,where i draw LineStrings, and then use Draw.getall , to get my geojson , and yes using the latest turf.js lib,what can i provide so we can tackle this problem ???
I would just check in devtools what explode
is actually set to, it should be pretty straight forward to debug.
@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 mind. This means that the functions from Turf should now be imported like this:
var explode = require('@turf/explode').default;
Might this be the problem?
I had the same issue and .default
fixed it