Blame view

Pods/AMapFoundation/AMapFoundationKit.framework/Headers/AMapURLSearchConfig.h 1.71 KB
75d24c15   yangbin   123
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  //
  //  MAMapURLSearchConfig.h
  //  MAMapKitNew
  //
  //  Created by xiaoming han on 15/5/25.
  //  Copyright (c) 2015 xiaoming han. All rights reserved.
  //
  
  #import <Foundation/Foundation.h>
  #import <CoreLocation/CoreLocation.h>
  #import "AMapURLSearchType.h"
  
  ///导航配置信息
  @interface AMapNaviConfig : NSObject
  
  ///应用返回的Scheme
  @property (nonatomic, copy) NSString *appScheme;
  
  ///应用名称
  @property (nonatomic, copy) NSString *appName;
  
  ///终点
  @property (nonatomic, assign) CLLocationCoordinate2D destination;
  
  ///导航策略
  @property (nonatomic, assign) AMapDrivingStrategy strategy;
  
  @end
  
  #pragma mark - 
  
  ///路径搜索配置信息
  @interface AMapRouteConfig : NSObject
  
  ///应用返回的Scheme
  @property (nonatomic, copy) NSString *appScheme;
  
  ///应用名称
  @property (nonatomic, copy) NSString *appName;
  
  ///起点坐标
  @property (nonatomic, assign) CLLocationCoordinate2D startCoordinate;
  
  ///终点坐标
  @property (nonatomic, assign) CLLocationCoordinate2D destinationCoordinate;
  
  ///驾车策略
  @property (nonatomic, assign) AMapDrivingStrategy drivingStrategy;
  
  ///公交策略
  @property (nonatomic, assign) AMapTransitStrategy transitStrategy;
  
  ///路径规划类型
  @property (nonatomic, assign) AMapRouteSearchType routeType;
  
  @end
  
  #pragma mark -
  
  ///POI搜索配置信息
  @interface AMapPOIConfig : NSObject
  
  ///应用返回的Scheme
  @property (nonatomic, copy) NSString *appScheme;
  
  ///应用名称
  @property (nonatomic, copy) NSString *appName;
  
  ///搜索关键字
  @property (nonatomic, copy) NSString *keywords;
  
  ///左上角坐标
  @property (nonatomic, assign) CLLocationCoordinate2D leftTopCoordinate;
  
  ///右下角坐标
  @property (nonatomic, assign) CLLocationCoordinate2D rightBottomCoordinate;
  
  @end