0

I am using google maps in my flutter app, I have done drawn paths from one point to another using flutter_polyline_points, Now I want to get turn by turn navigation as mentioned in this attached picture, is this possible in flutter, or how I will achieve this

kcsquared
  • 5,244
  • 1
  • 11
  • 36

1 Answers1

0

This is Google Map Turn by Turn Navigation View. You can launch it using Android Intent Plus lib

    AndroidIntent mapIntent = AndroidIntent(
        action:'action_view',
        package: 'com.google.android.apps.maps',
      data: 'google.navigation:q=$yourDestinationLat,$yourDestinationLng'
    );
    mapIntent.launch();

Read more at this link

Faiizii Awan
  • 1,615
  • 1
  • 13
  • 28