In this code
How can I insert the zoom? Always display the entire earth at first
Google maps:
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
How can I insert the zoom? Always display the entire earth at first