Swiftgram/LegacyComponents/TGLocationAnnotation.h
Ilya Laktyushin 86a91011e8 no message
2017-09-13 20:52:56 +03:00

20 lines
492 B
Objective-C

#import <MapKit/MapKit.h>
@interface TGLocationPickerAnnotation: NSObject <MKAnnotation>
@property (nonatomic, assign) CLLocationCoordinate2D coordinate;
- (instancetype)initWithCoordinate:(CLLocationCoordinate2D)coordinate;
@end
@interface TGLocationAnnotation : NSObject <MKAnnotation>
@property (nonatomic, assign) CLLocationCoordinate2D coordinate;
@property (nonatomic, strong) NSDictionary *userInfo;
- (instancetype)initWithCoordinate:(CLLocationCoordinate2D)coordinate;
@end