I am looking for a way to open the native map app of the application from a phonegap wrapped JavaScript app.
So far my research revealed that for Android I will have to use a link in this format:
<a href="geo:38.897096,-77.036545">Geolocation Test</a>
This is problematic because I will have to use an external service to convert the address into longitude and latitude coordinates, which is something I would like to avoid if possible.
In the case of iOS this is a lot simpler. I only have to give it a link in this format:
<a href="maps:q=Bacau">Test 2</a>
And the native map app get's opened.
Is there any way, similar to the one in iOS, for Android to give it a plain link with an address in a specific format and the device will know to open it's native map app?