iOS Question gmaps marker on touch/ fabricview

dibb3386

Member
Licensed User
Longtime User
Is it possible to put a marker on gmaps from user touch (am terrible at explaining myself :S )

I want to add a marker if i touch somewhere on google maps and draw a polyline to it?

Is is also possible to use like fabricview for b4a to touch draw on the map? Finger draw a X for example or a smiley face etc.
 

dibb3386

Member
Licensed User
Longtime User
Thanks alot got it working.
B4X:
Sub gmap_Click (Point As LatLng)
gextra.AddCircle(Point.Latitude, Point.Longitude, 10, Colors.Green)
End Sub
 
Upvote 0
Top