Coder Social home page Coder Social logo

Comments (1)

1ec5 avatar 1ec5 commented on August 21, 2024

The navigation SDK’s RouteProgress class has some conveniences for this kind of thing, but MapboxDirections tends to stick to functionality that’s provided by the Directions API itself.

Is there a way to get the eta for a certain Waypoint directly?

Each route leg goes from one waypoint to the next, so this snippet gets you the expected travel time from the origin to the intermediate waypoint at index waypointIndex, and you can modify it to compute other statistics instead:

// Get the legs up to the waypoint.
let precedingLegs = route.legs.prefix(waypointIndex)
// Sum up the legs’ ETAs.
let expectedTravelTime = precedingLegs.map(\.expectedTravelTime).reduce(0, +)
// Shift the current date forward by the ETA.
let arrivalDate = Date() + expectedTravelTime

It would also be interesting to be able to display that time to the nav ui.

That does sound interesting. Would you mind elaborating on this idea in a new issue in https://github.com/mapbox/mapbox-navigation-ios/issues/? Thanks!

from mapbox-directions-swift.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.