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_Search.framework/Headers/BMKShareUrlSearchOption.h | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 57 insertions(+), 0 deletions(-)
diff --git a/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Search.framework/Headers/BMKShareUrlSearchOption.h b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Search.framework/Headers/BMKShareUrlSearchOption.h
new file mode 100644
index 0000000..bc67806
--- /dev/null
+++ b/screendisplay/Pods/BaiduMapKit/BaiduMapKit/BaiduMapAPI_Search.framework/Headers/BMKShareUrlSearchOption.h
@@ -0,0 +1,57 @@
+/*
+ * BMKShareUrlSearchOption.h
+ * BMapKit
+ *
+ * Copyright 2014 Baidu Inc. All rights reserved.
+ *
+ */
+
+#import <BaiduMapAPI_Base/BMKTypes.h>
+/// poi���������������������������������
+@interface BMKPoiDetailShareURLOption : NSObject
+{
+ NSString *_uid;
+}
+///poi���uid
+@property (nonatomic, strong) NSString *uid;
+
+@end
+
+///���geo���������������������������
+@interface BMKLocationShareURLOption : NSObject {
+ NSString *_name;
+ NSString *_snippet;
+ CLLocationCoordinate2D _location;
+}
+///������
+@property (nonatomic, strong) NSString *name;
+///���������URL���������������������������������������������������������
+@property (nonatomic, strong) NSString *snippet;
+///���������
+@property (nonatomic, assign) CLLocationCoordinate2D location;
+@end
+
+
+///������������������������
+typedef enum {
+ BMK_ROUTE_PLAN_SHARE_URL_TYPE_DRIVE = 0, //������������������������������
+ BMK_ROUTE_PLAN_SHARE_URL_TYPE_WALK = 1, //������������������������������
+ BMK_ROUTE_PLAN_SHARE_URL_TYPE_RIDE = 2, //������������������������������
+ BMK_ROUTE_PLAN_SHARE_URL_TYPE_TRANSIT = 3, //������������������������������
+}BMKRoutePlanShareURLType;
+
+///���������������������������������������
+@interface BMKRoutePlanShareURLOption : NSObject
+
+///������������������������������
+@property (nonatomic, assign) BMKRoutePlanShareURLType routePlanType;
+///���������������������������������������������������������������������������������������from.cityID
+@property (nonatomic, strong) BMKPlanNode *from;
+///���������������������������������������������������������������������������������������to.cityID
+@property (nonatomic, strong) BMKPlanNode *to;
+///cityID���������������������������������������������������������������������������������������������
+@property (nonatomic, assign) NSUInteger cityID;
+///���������������������������������������������������������������������
+@property (nonatomic, assign) NSUInteger routeIndex;
+
+@end
\ No newline at end of file
--
Gitblit v1.8.0