NIMSDK-iOS
载入中...
搜索中...
未找到
NIMLocationObject.h
浏览该文件的文档.
1//
2// NIMLocationObject.h
3// NIMLib
4//
5// Created by Netease.
6// Copyright (c) 2015年 Netease. All rights reserved.
7//
8
10
11NS_ASSUME_NONNULL_BEGIN
12
13/**
14 * 位置实例对象
15 */
16@interface NIMLocationObject : NSObject<NIMMessageObject>
17
18/**
19 * 位置实例对象初始化方法
20 *
21 * @param latitude 纬度
22 * @param longitude 经度
23 * @param title 地理位置描述
24 * @return 位置实例对象
25 */
26- (instancetype)initWithLatitude:(double)latitude
27 longitude:(double)longitude
28 title:(nullable NSString *)title;
29
30/**
31 * 维度
32 */
33@property (nonatomic, assign, readonly) double latitude;
34
35/**
36 * 经度
37 */
38@property (nonatomic, assign, readonly) double longitude;
39
40/**
41 * 标题
42 */
43@property (nullable, nonatomic, copy, readonly) NSString *title;
44
45
46@end
47
48NS_ASSUME_NONNULL_END
Definition: NIMLocationObject.h:16
double latitude
Definition: NIMLocationObject.h:33
double longitude
Definition: NIMLocationObject.h:38
NSString * title
Definition: NIMLocationObject.h:43
Definition: NIMMessageObjectProtocol.h:20