Dammyololade / flutter_polyline_points

A flutter plugin that's decodes encoded google poly line string into list of geo-coordinates suitable for showing route/polyline on maps
MIT License
105 stars 130 forks source link

How can add lat long in waypoint. #69

Closed alpitilanam closed 1 year ago

alpitilanam commented 2 years ago

I want add the lat long in way point, So I have implement like below: wayPoints: [PolylineWayPoint(location: "23.3822748%2C74.0206771,23.2537885%2C74.1480252")], but its' not working. So please help me for this. Thank you in Advance.

rijazrasheed commented 2 years ago

You need to add waypoints like this wayPoints: [PolylineWayPoint(location: "via:23.3822748%2C74.0206771,23.2537885%2C74.1480252")], Also if the travel mode is set to transit, you have to set atleast two waypoints.