MKPolyline.inc 819 B

1234567891011121314151617181920212223
  1. { Parsed from MapKit.framework MKPolyline.h }
  2. {$ifdef TYPES}
  3. type
  4. MKPolylinePtr = ^MKPolyline;
  5. {$endif}
  6. {$ifdef CLASSES}
  7. type
  8. MKPolyline = objcclass external (MKMultiPoint, MKOverlayProtocol)
  9. public
  10. class function polylineWithPoints_count (points_: MKMapPointPtr; count: NSUInteger): instancetype; message 'polylineWithPoints:count:';
  11. class function polylineWithCoordinates_count (coords: CLLocationCoordinate2DPtr; count: NSUInteger): instancetype; message 'polylineWithCoordinates:count:';
  12. { Adopted protocols }
  13. function boundingMapRect: MKMapRect; message 'boundingMapRect';
  14. function canReplaceMapContent: ObjCBOOL; message 'canReplaceMapContent'; { available in 10_9, 7_0 }
  15. function intersectsMapRect (mapRect: MKMapRect): ObjCBOOL; message 'intersectsMapRect:';
  16. end;
  17. {$endif}