blob: 64e0175fa2c61eec54e88897f0d0e4f6f4ff43c0 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{ Parsed from MapKit.framework MKMapSnapshotOptions.h }
{ Types from MKMapSnapshotOptions }
{$ifdef TYPES}
{$endif}
{$ifdef TYPES}
type
MKMapSnapshotOptionsPtr = ^MKMapSnapshotOptions;
{$endif}
{$ifdef CLASSES}
type
MKMapSnapshotOptions = objcclass external (NSObject, NSCopyingProtocol)
public
procedure setCamera(newValue: MKMapCamera); message 'setCamera:';
function camera: MKMapCamera; message 'camera';
procedure setMapRect(newValue: MKMapRect); message 'setMapRect:';
function mapRect: MKMapRect; message 'mapRect';
procedure setRegion(newValue: MKCoordinateRegion); message 'setRegion:';
function region: MKCoordinateRegion; message 'region';
procedure setMapType(newValue: MKMapType); message 'setMapType:';
function mapType: MKMapType; message 'mapType';
procedure setShowsPointsOfInterest(newValue: ObjCBOOL); message 'setShowsPointsOfInterest:';
function showsPointsOfInterest: ObjCBOOL; message 'showsPointsOfInterest';
procedure setShowsBuildings(newValue: ObjCBOOL); message 'setShowsBuildings:';
function showsBuildings: ObjCBOOL; message 'showsBuildings';
{$if defined(TARGET_OS_IPHONE)}
procedure setSize(newValue: CGSize); message 'setSize:';
function size: CGSize; message 'size';
{$else}
procedure setSize_(newValue: NSSize); message 'setSize:';
function size_: NSSize; message 'size';
{$endif}
{$if defined(TARGET_OS_IPHONE)}
procedure setScale(newValue: CGFloat); message 'setScale:';
function scale: CGFloat; message 'scale';
{$endif}
{ Adopted protocols }
function copyWithZone (zone: NSZonePtr): id; message 'copyWithZone:';
end;
{$endif}
|