ThePuiu Active Member Licensed User Longtime User May 20, 2017 #1 Hi, I want to draw a line between the current position and a marker on the map (Google Map V2). Line must move with the movement of the current position. How can this be done without leaving the previous lines on the map?
Hi, I want to draw a line between the current position and a marker on the map (Google Map V2). Line must move with the movement of the current position. How can this be done without leaving the previous lines on the map?
Erel B4X founder Staff member Licensed User Longtime User May 21, 2017 #2 You can update the line points with: B4X: Polyline.Points = Array(LatLng1, LatLng2) Upvote 0
ThePuiu Active Member Licensed User Longtime User May 21, 2017 #3 Thanks, it works perfectly! Is there a possibility that the drawing line has an arrow at the end? Upvote 0
Erel B4X founder Staff member Licensed User Longtime User May 21, 2017 #4 You will need to draw the arrow yourself (with 3 additional points). Upvote 0