mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
23 lines
538 B
Objective-C
23 lines
538 B
Objective-C
#import "TGActor.h"
|
|
|
|
#import <MapKit/MapKit.h>
|
|
|
|
@interface TGMapSnapshotOptions : NSObject
|
|
|
|
@property (nonatomic, assign) MKCoordinateRegion region;
|
|
@property (nonatomic, assign) MKMapType mapType;
|
|
@property (nonatomic, assign) bool showsPointsOfInterest;
|
|
@property (nonatomic, assign) bool showsBuildings;
|
|
|
|
@property (nonatomic, assign) CGSize imageSize;
|
|
@property (nonatomic, assign) CGFloat scale;
|
|
|
|
- (MKMapSnapshotOptions *)mkMapSnapshotOptions;
|
|
- (NSString *)uniqueIdentifier;
|
|
|
|
@end
|
|
|
|
@interface TGMapSnapshotterActor : TGActor
|
|
|
|
@end
|