Android – Is it possible to launch navigation app from webpage on Android

androidnavigationweb-applications

I'm working on a mobile version of a web app. It mostly just displays info of some stores, but it would be nice if it could send the coordinates to the navigation program instead of just displaying it.

If I just put a link like this:

<a href="geo:37.422219,-122.08364?z=14">go there</a>

it works, and lauches Google Maps to the given coords. I would like to do the same with the navigation program: user clicks link, navigation lauches and directs user to the given coords. Is this possible?
I tried to change geo: to nav:, navi:, navigation: without luck.

Any help is appreciated.

Best Answer

Try this:

<a href="http://maps.google.com/maps?saddr=20.344,34.34&daddr=20.5666,45.345">Go There</a>

Where arguments can be
saddr : Source Address
daddr : Destination Address