2

I've found that on Google support driving navigation on latest Android. http://www.google.com/mobile/navigation/index.html

But, I can't find any kinds of API set to provide those kinds of functions. Is there navigation support API? or isn't it released yet?

I can't understand why it's not included on Ginger bread version. They said that Nexus S already support Driving navigation.

Do you have any information about this issue? Please let me know. Thanks.

Zigfreid
  • 121
  • 3
  • 8
  • 1
    Check Getting the geopoints from google maps from [routing-driving-directions-on-android](http://blog.synyx.de/2010/06/routing-driving-directions-on-android-part-1-get-the-route/) – Anu Dec 14 '12 at 05:00

1 Answers1

1

Are you trying to send intents to the navigation app to navigate to a location? Apparently it is not "officially" supported, however here is how you tell the navigation app to navigate to a location.

String url = "google.navigation:q=" + lat + ","
            + lng;
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(i);
Stefan Bossbaly
  • 6,682
  • 9
  • 53
  • 82