Hi All,
I have my current location, Latitude, Longtitute of the destination. How can I open GoogleMap App in driving mode with that location+Latitude+Longtitude (GoogleMap installed). The purpose is show google in driving mode for deliveryman goto the destination.
Sub View_Direction(lat As String,lon As String)
Dim mapIntent As Intent
Dim geoURI As String
geoURI = "google.navigation:q="& lat &"," & lon
mapIntent.Initialize(mapIntent.ACTION_VIEW,geoURI)
StartActivity(mapIntent)
End Sub