I would like to click a spot on a Google maps v2 android map. If the clicked point intersects a point on a polyline path, then display the polyline. I do not see any documented clickable events for polylines in android. I tried to extend the current Polyline object (marked final)
What other options do I have?
Register an
OnMapClickListener. Determine if a given click is on your line yourself. If it is, do whatever it was you wanted to do in this case.