MKPolylineView Class Reference

Inherits from
Conforms to
Framework
/System/Library/Frameworks/MapKit.framework
Availability
Available in iOS 4.0 and later.
Companion guide
Declared in
MKPolylineView.h
Related sample code

Overview

The MKPolylineView class provides the visual representation for an MKPolyline annotation object. This view strokes the path represented by the annotation. (This class does not fill the area enclosed by the path.) You can change the color and other drawing attributes of the path by modifying the properties inherited from the MKOverlayPathView class. This class is typically used as is and not subclassed.

Tasks

Initializing the Polyline View

Accessing the Polyline Overlay

Properties

polyline

The polyline overlay object that contains the information used to draw the overlay. (read-only)

@property (nonatomic, readonly) MKPolyline *polyline
Availability
  • Available in iOS 4.0 and later.
Declared In
MKPolylineView.h

Instance Methods

initWithPolyline:

Initializes and returns a new overlay view using the specified polyline overlay object

- (id)initWithPolyline:(MKPolyline *)polyline
Parameters
polyline

The polyline overlay object containing the information about the path to be stroked. This object must have at least two points defined in order for this view to draw the corresponding path.

Return Value

A new polyline overlay view.

Availability
  • Available in iOS 4.0 and later.
Related Sample Code
Declared In
MKPolylineView.h

Did this document help you? Yes It's good, but... Not helpful...