立得地图iOS SDK 地图&搜索服务参考手册 V1.7.0
LMKPOI.h
浏览该文件的文档.
1 //
2 // LMKPOI.h
3 // LeadorMapSDK
4 //
5 // Created by 李帅 on 2017/8/22.
6 // Copyright © 2017年 zhangyuanke. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import <CoreLocation/CoreLocation.h>
11 
12 @interface LMKPOI : NSObject
13 
17 @property (assign, nonatomic) int index;
18 
22 @property (assign, nonatomic) int nodeIndex;
23 
27 @property (assign, nonatomic) CLLocationCoordinate2D coordinate;
28 
29 
30 - (id)initWithCoordinate:(CLLocationCoordinate2D)coordinate;
31 
32 @end
CLLocationCoordinate2D coordinate
poi的平均位置
Definition: LMKPOI.h:27
int nodeIndex
聚合节点索引(内部用)
Definition: LMKPOI.h:22
int index
聚合索引(内部用)
Definition: LMKPOI.h:17
Definition: LMKPOI.h:12