| 12345678910111213141516171819202122232425 |
- { Parsed from MapKit.framework MKCircle.h }
- {$ifdef TYPES}
- type
- MKCirclePtr = ^MKCircle;
- {$endif}
- {$ifdef CLASSES}
- type
- MKCircle = objcclass external (MKShape, MKOverlayProtocol)
- public
- class function circleWithCenterCoordinate_radius (coord: CLLocationCoordinate2D; radius: CLLocationDistance): instancetype; message 'circleWithCenterCoordinate:radius:';
- class function circleWithMapRect (mapRect: MKMapRect): instancetype; message 'circleWithMapRect:';
- function coordinate: CLLocationCoordinate2D; message 'coordinate';
- function radius: CLLocationDistance; message 'radius';
- function boundingMapRect: MKMapRect; message 'boundingMapRect';
- { Adopted protocols }
- function canReplaceMapContent: ObjCBOOL; message 'canReplaceMapContent'; { available in 10_9, 7_0 }
- function intersectsMapRect (mapRect: MKMapRect): ObjCBOOL; message 'intersectsMapRect:';
- end;
- {$endif}
|