Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 487 Bytes

sentgeolocation.md

File metadata and controls

15 lines (10 loc) · 487 Bytes

SENTGeolocation

@interface SENTGeolocation : NSObject <NSSecureCoding, NSCopying>

@property (nonatomic, assign) CLLocationDegrees latitude;
@property (nonatomic, assign) CLLocationDegrees longitude;
@property (nonatomic, assign) NSInteger accuracyInMeters;

- (instancetype)initWithLatitude:(CLLocationDegrees)latitude longitude:(CLLocationDegrees)longitude accuracy:(CLLocationAccuracy)accuracy;

- (BOOL)isEqualToGeolocation:(SENTGeolocation *)geolocation;

@end