Android Question Zoom in Google Maps intent

Juan Vargas (Bioagro)

Member
Licensed User
In this code
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
 
Top