| 1234567891011121314151617181920212223 |
- { Parsed from MapKit.framework MKPolyline.h }
- {$ifdef TYPES}
- type
- MKPolylinePtr = ^MKPolyline;
- {$endif}
- {$ifdef CLASSES}
- type
- MKPolyline = objcclass external (MKMultiPoint, MKOverlayProtocol)
- public
- class function polylineWithPoints_count (points_: MKMapPointPtr; count: NSUInteger): instancetype; message 'polylineWithPoints:count:';
- class function polylineWithCoordinates_count (coords: CLLocationCoordinate2DPtr; count: NSUInteger): instancetype; message 'polylineWithCoordinates:count:';
- { Adopted protocols }
- function boundingMapRect: MKMapRect; message 'boundingMapRect';
- function canReplaceMapContent: ObjCBOOL; message 'canReplaceMapContent'; { available in 10_9, 7_0 }
- function intersectsMapRect (mapRect: MKMapRect): ObjCBOOL; message 'intersectsMapRect:';
- end;
- {$endif}
|