mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-27 07:48:42 +00:00
20 lines
492 B
Objective-C
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
|