80 lines
1.7 KiB
Objective-C
Executable File
80 lines
1.7 KiB
Objective-C
Executable File
//
|
|
// 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
|
|
|