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