BaiduMap_IOSSDK_v6.6.2_Docs 6.6.2
载入中...
搜索中...
未找到
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, copy) NSString *favId;
21@property (nonatomic, copy) NSString *poiName;
23@property (nonatomic, copy) NSString *poiUid;
25@property (nonatomic, assign) CLLocationCoordinate2D pt;
27@property (nonatomic, copy) NSString *address;
29@property (nonatomic, copy) NSString *cityName;
31@property (nonatomic, assign) NSUInteger timeStamp;
32
33
34@end
35
36#endif
收藏点信息类
Definition BMKFavPoiInfo.h:17
CLLocationCoordinate2D pt
poi坐标(添加或更新时,必须有)
Definition BMKFavPoiInfo.h:25
NSUInteger timeStamp
添加或最后修改时间戳
Definition BMKFavPoiInfo.h:31
NSString * cityName
城市名称
Definition BMKFavPoiInfo.h:29
NSString * poiUid
poi点Uid
Definition BMKFavPoiInfo.h:23
NSString * address
poi地址
Definition BMKFavPoiInfo.h:27
NSString * poiName
poi名称(添加或更新时,必须有)
Definition BMKFavPoiInfo.h:21
NSString * favId
数据ID,自动生成
Definition BMKFavPoiInfo.h:19