MKPolyline is used to represent a sequence of connected points, commonly used to draw an overlay on a MKMapView.
MKPolyline
is used to represent a sequence of connected points, commonly used to draw an overlay on a MKMapView
. Note that the first and last points are not automatically linked by a segment and that the order of the points does matter.
MKPolyline
s are almost always used in conjunction with an MKPolylineView
, which is responsible for the user interface representation on a map.
For more information, please refer to the Apple Documentation for MKPolyline
and MKPolylineView
.