akexorcist / GoogleDirectionLibrary

[Android] Library for Google Direction API for Google Maps Android API v2
Apache License 2.0
571 stars 174 forks source link

Waypoints #5

Closed Spoki4 closed 6 years ago

Spoki4 commented 8 years ago

I think you need to add a waypoint to the search path. This can come in handy.

pseudozach commented 8 years ago

I use this library and love it. Waypoints would be fantastic!

akexorcist commented 6 years ago

Check out v1.1.0! Waypoints support now

GoogleDirection.withServerKey("YOUR_SERVER_API_KEY")
        .from(YOUR_ORIGIN)
        .and(WAYPOINT)
        .and(WAYPOINT)
        .to(DETINATION)
        ....