summaryrefslogtreecommitdiff
path: root/SmartDeviceLink/SDLLocationCoordinate.h
blob: dd2850f97f01ecf072213cb4f8240047c74be306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//  SDLLocationCoordinate.h
//

#import "SDLRPCStruct.h"

@interface SDLLocationCoordinate : SDLRPCStruct

/**
 * @abstract Latitude of the location
 *
 * Required, Double -90 - 90
 */
@property (copy, nonatomic) NSNumber<SDLFloat> *latitudeDegrees;

/**
 * @abstract Longitude of the location
 *
 * Required, Double -180 - 180
 */
@property (copy, nonatomic) NSNumber<SDLFloat> *longitudeDegrees;

@end