BaiduMap_IOSSDK_v6.5.5doc_Docs  6.5.5
BMKFavPoiInfo.h
浏览该文件的文档.
1 //
2 // BMKFavPoiInfo.h
3 // UtilsComponent
4 //
5 // Created by wzy on 15/4/8.
6 // Copyright (c) 2015年 baidu. All rights reserved.
7 //
8 
9 #ifndef UtilsComponent_BMKFavPoiInfo_h
10 #define UtilsComponent_BMKFavPoiInfo_h
11 
12 #import <Foundation/Foundation.h>
13 #import <CoreLocation/CoreLocation.h>
14 
16 @interface BMKFavPoiInfo : NSObject
17 
19 @property (nonatomic, strong) NSString* favId;
21 @property (nonatomic, strong) NSString* poiName;
23 @property (nonatomic, strong) NSString* poiUid;
25 @property (nonatomic, assign) CLLocationCoordinate2D pt;
27 @property (nonatomic, strong) NSString* address;
29 @property (nonatomic, strong) NSString* cityName;
31 @property (nonatomic, assign) NSUInteger timeStamp;
32 
33 
34 @end
35 
36 #endif
BMKFavPoiInfo::poiName
NSString * poiName
poi名称(添加或更新时,必须有)
Definition: BMKFavPoiInfo.h:21
BMKFavPoiInfo::poiUid
NSString * poiUid
poi点Uid
Definition: BMKFavPoiInfo.h:23
BMKFavPoiInfo
收藏点信息类
Definition: BMKFavPoiInfo.h:17
BMKFavPoiInfo::address
NSString * address
poi地址
Definition: BMKFavPoiInfo.h:27
BMKFavPoiInfo::timeStamp
NSUInteger timeStamp
添加或最后修改时间戳
Definition: BMKFavPoiInfo.h:31
BMKFavPoiInfo::cityName
NSString * cityName
城市名称
Definition: BMKFavPoiInfo.h:29
BMKFavPoiInfo::pt
CLLocationCoordinate2D pt
poi坐标(添加或更新时,必须有)
Definition: BMKFavPoiInfo.h:25
BMKFavPoiInfo::favId
NSString * favId
数据ID,自动生成
Definition: BMKFavPoiInfo.h:19