blob: 3cbdcdf749b7878c2bf172ed1b0bf57ea7912b52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
{ Parsed from MapKit.framework MKMapCamera.h }
{$ifdef TYPES}
type
MKMapCameraPtr = ^MKMapCamera;
{$endif}
{$ifdef CLASSES}
type
MKMapCamera = objcclass external (NSObject, NSSecureCodingProtocol, NSCopyingProtocol)
public
procedure setCenterCoordinate(newValue: CLLocationCoordinate2D); message 'setCenterCoordinate:';
function centerCoordinate: CLLocationCoordinate2D; message 'centerCoordinate';
procedure setHeading(newValue: CLLocationDirection); message 'setHeading:';
function heading: CLLocationDirection; message 'heading';
procedure setPitch(newValue: CGFloat); message 'setPitch:';
function pitch: CGFloat; message 'pitch';
procedure setAltitude(newValue: CLLocationDistance); message 'setAltitude:';
function altitude: CLLocationDistance; message 'altitude';
class function camera: instancetype; message 'camera';
class function cameraLookingAtCenterCoordinate_fromEyeCoordinate_eyeAltitude (centerCoordinate_: CLLocationCoordinate2D; eyeCoordinate: CLLocationCoordinate2D; eyeAltitude: CLLocationDistance): instancetype; message 'cameraLookingAtCenterCoordinate:fromEyeCoordinate:eyeAltitude:';
{ Adopted protocols }
function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
procedure encodeWithCoder (aCoder: NSCoder); message 'encodeWithCoder:';
function initWithCoder (aDecoder: NSCoder): id; message 'initWithCoder:';
class function supportsSecureCoding: ObjCBOOL; message 'supportsSecureCoding';
end;
{$endif}
|