1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- //
- // 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
|