MKOverlay.inc 606 B

123456789101112131415161718192021
  1. { Parsed from MapKit.framework MKOverlay.h }
  2. {$ifdef TYPES}
  3. type
  4. MKOverlayProtocolPtr = ^MKOverlayProtocol;
  5. {$endif}
  6. {$ifdef PROTOCOLS}
  7. type
  8. MKOverlayProtocol = objcprotocol external name 'MKOverlay' (MKAnnotationProtocol)
  9. required
  10. function coordinate: CLLocationCoordinate2D; message 'coordinate';
  11. function boundingMapRect: MKMapRect; message 'boundingMapRect';
  12. optional
  13. function intersectsMapRect (mapRect: MKMapRect): ObjCBOOL; message 'intersectsMapRect:';
  14. function canReplaceMapContent: ObjCBOOL; message 'canReplaceMapContent'; { available in 10_9, 7_0 }
  15. end;
  16. {$endif}