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.

link|improve this question
feedback

1 Answer

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);
link|improve this answer
No. I'm looking for real Android SDK/API like Google Maps Open API. For example, var directionsService = new google.maps.DirectionsService(); – Zigfreid Jun 23 '11 at 4:48
I am afraid not. Google has not published any api for their navigation service. You could always look at the source code if you wanted. – Sbossb Jun 23 '11 at 13:22
So do I. Not yet imported into Android and iOS. Thanks. – Zigfreid Jun 24 '11 at 7:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.