From 3e8437ae559487362fae3525beb79c534c213a51 Mon Sep 17 00:00:00 2001 From: 单军华 Date: Thu, 12 Jul 2018 13:44:34 +0800 Subject: [PATCH] bug修复和功能优化 --- screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Utils.framework/Headers/BMKFavPoiInfo.h | 36 ++++++++++++++++++++++++++++++++++++ 1 files changed, 36 insertions(+), 0 deletions(-) diff --git a/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Utils.framework/Headers/BMKFavPoiInfo.h b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Utils.framework/Headers/BMKFavPoiInfo.h new file mode 100644 index 0000000..7f662ca --- /dev/null +++ b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Utils.framework/Headers/BMKFavPoiInfo.h @@ -0,0 +1,36 @@ +// +// BMKFavPoiInfo.h +// UtilsComponent +// +// Created by wzy on 15/4/8. +// Copyright (c) 2015��� baidu. All rights reserved. +// + +#ifndef UtilsComponent_BMKFavPoiInfo_h +#define UtilsComponent_BMKFavPoiInfo_h + +#import <Foundation/Foundation.h> +#import <CoreLocation/CoreLocation.h> + +///������������������ +@interface BMKFavPoiInfo : NSObject + +///������ID��������������� +@property (nonatomic, strong) NSString* favId; +///poi������������������������������������������ +@property (nonatomic, strong) NSString* poiName; +///poi���Uid +@property (nonatomic, strong) NSString* poiUid; +///poi������������������������������������������ +@property (nonatomic, assign) CLLocationCoordinate2D pt; +///poi������ +@property (nonatomic, strong) NSString* address; +///������������ +@property (nonatomic, strong) NSString* cityName; +///������������������������������ +@property (nonatomic, assign) NSUInteger timeStamp; + + +@end + +#endif -- Gitblit v1.8.0