mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 14:45:21 +00:00
Build ChatListUI
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#import <CoreLocation/CoreLocation.h>
|
||||
|
||||
@interface TGLocationReverseGeocodeResult : NSObject
|
||||
|
||||
@property (nonatomic, readonly) NSString *identifier;
|
||||
@property (nonatomic, readonly) CLLocationCoordinate2D coordinate;
|
||||
|
||||
@property (nonatomic, readonly) NSString *displayAddress;
|
||||
|
||||
@property (nonatomic, readonly) NSString *country;
|
||||
@property (nonatomic, readonly) NSString *countryAbbr;
|
||||
@property (nonatomic, readonly) NSString *state;
|
||||
@property (nonatomic, readonly) NSString *stateAbbr;
|
||||
@property (nonatomic, readonly) NSString *city;
|
||||
@property (nonatomic, readonly) NSString *district;
|
||||
@property (nonatomic, readonly) NSString *street;
|
||||
|
||||
@property (nonatomic, readonly) NSString *fullAddress;
|
||||
|
||||
+ (TGLocationReverseGeocodeResult *)reverseGeocodeResultWithDictionary:(NSDictionary *)dictionary;
|
||||
+ (TGLocationReverseGeocodeResult *)reverseGeocodeResultWithPlacemark:(CLPlacemark *)placemark;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user