With this code
the user can add markers and when he taps the marker, he can ask for directions (lower right corner, left symbol) or search for any place (lower right corner, right symbol). The user will not know this before he/she tries it out.
I would like to have the right symbol - search places - permanently on the screen.
Is there a method to achieve that?
B4X:
Private Sub MapFragment1_Click (Point As LatLng)
gmapp.AddMarker(Point.Latitude, Point.Longitude, "Markierung")
End Sub
the user can add markers and when he taps the marker, he can ask for directions (lower right corner, left symbol) or search for any place (lower right corner, right symbol). The user will not know this before he/she tries it out.
I would like to have the right symbol - search places - permanently on the screen.
Is there a method to achieve that?