The following code , taken from a working app, will navigate to a point from your current location using google maps
Sub NavigatetoLatLong(Lat As String, Lng As String)
Dim mapIntent As Intent
Dim gURI As String
gURI="google.navigation:q=" & Lat & "," & Lng
mapIntent.Initialize(mapIntent.ACTION_VIEW, gURI)
mapIntent.SetComponent("googlemaps")
StartActivity(mapIntent)
End Sub
you can get other intents here:
Learn how to use Android intents to launch the Google Maps app for displaying maps, searching locations, getting directions, or viewing Street View panoramas.
the one you need is "GEO"
Learn how to use Android intents to launch the Google Maps app for displaying maps, searching locations, getting directions, or viewing Street View panoramas.