itinero / routing

The routing core of itinero.
Apache License 2.0
221 stars 69 forks source link

Identify the Notes or interest point? #175

Closed craniodev closed 6 years ago

craniodev commented 6 years ago

On a route how can I identify the Notes or interest point, like this? To route I used this:

var result = instance.Calculate(profileName, coordinates);

xivk commented 6 years ago

You would need to load the nodes into a separate database or data structure and check if they are along the routing that was calculated.

This is not really an issue Itinero handles, we specialize in the routing part, getting a route, what is done afterwards is up to users of our library.

An option would be to build a set of POI's you want, draw a buffer around the route that was calculated and suggest POI's that are found within the buffer. You can use NTS for this.