BaiduMap_IOSSDK_v6.6.2_Docs 6.6.2
载入中...
搜索中...
未找到
BMKShareUrlSearchOption.h
浏览该文件的文档.
1/*
2 * BMKShareUrlSearchOption.h
3 * BMapKit
4 *
5 * Copyright 2014 Baidu Inc. All rights reserved.
6 *
7 */
8
9#import <BaiduMapAPI_Base/BMKTypes.h>
10
12@interface BMKPoiDetailShareURLOption : NSObject
14@property (nonatomic, copy) NSString *uid;
15@end
16
18@interface BMKLocationShareURLOption : NSObject
20@property (nonatomic, copy) NSString *name;
22@property (nonatomic, copy) NSString *snippet;
24@property (nonatomic, assign) CLLocationCoordinate2D location;
25@end
26
27
29typedef enum {
30 BMK_ROUTE_PLAN_SHARE_URL_TYPE_DRIVE = 0, //驾车路线规划短串分享
31 BMK_ROUTE_PLAN_SHARE_URL_TYPE_WALK = 1, //步行路线规划短串分享
32 BMK_ROUTE_PLAN_SHARE_URL_TYPE_RIDE = 2, //骑行路线规划短串分享
33 BMK_ROUTE_PLAN_SHARE_URL_TYPE_TRANSIT = 3, //公交路线规划短串分享
35
37@interface BMKRoutePlanShareURLOption : NSObject
39@property (nonatomic, assign) BMKRoutePlanShareURLType routePlanType;
41@property (nonatomic, strong) BMKPlanNode *from;
43@property (nonatomic, strong) BMKPlanNode *to;
45@property (nonatomic, assign) NSUInteger cityID;
47@property (nonatomic, assign) NSUInteger routeIndex;
48@end
BMKRoutePlanShareURLType
路线规划短串分享
Definition BMKShareUrlSearchOption.h:29
@ BMK_ROUTE_PLAN_SHARE_URL_TYPE_DRIVE
Definition BMKShareUrlSearchOption.h:30
@ BMK_ROUTE_PLAN_SHARE_URL_TYPE_RIDE
Definition BMKShareUrlSearchOption.h:32
@ BMK_ROUTE_PLAN_SHARE_URL_TYPE_WALK
Definition BMKShareUrlSearchOption.h:31
@ BMK_ROUTE_PLAN_SHARE_URL_TYPE_TRANSIT
Definition BMKShareUrlSearchOption.h:33
反geo短串分享检索信息类
Definition BMKShareUrlSearchOption.h:19
线路检索节点信息,一个路线检索节点可以通过经纬度坐标或城市名加地名确定
Definition BMKTypes.h:309
poi详情短串分享检索信息类
Definition BMKShareUrlSearchOption.h:13
NSString * uid
poi的uid
Definition BMKShareUrlSearchOption.h:14
路线规划短串分享检索信息类
Definition BMKShareUrlSearchOption.h:38