dibb3386 Member Licensed User Longtime User Mar 1, 2020 #1 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.
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.
Erel B4X founder Staff member Licensed User Longtime User Mar 2, 2020 #2 dibb3386 said: Is it possible to put a marker on gmaps from user touch Click to expand... Yes. Implement the Click event and add a marker at that point. Upvote 0
dibb3386 said: Is it possible to put a marker on gmaps from user touch Click to expand... Yes. Implement the Click event and add a marker at that point.
dibb3386 Member Licensed User Longtime User Mar 5, 2020 #3 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
Thanks alot got it working. B4X: Sub gmap_Click (Point As LatLng) gextra.AddCircle(Point.Latitude, Point.Longitude, 10, Colors.Green) End Sub