You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1012 B
41 lines
1012 B
// |
|
// AMapURLSearch.h |
|
// AMapFoundation |
|
// |
|
// Created by xiaoming han on 15/10/28. |
|
// Copyright © 2015年 Amap. All rights reserved. |
|
// |
|
|
|
#import <Foundation/Foundation.h> |
|
#import "AMapURLSearchConfig.h" |
|
|
|
///调起高德地图URL进行搜索,若是调起失败,可使用`+ (void)getLatestAMapApp;`方法获取最新版高德地图app. |
|
@interface AMapURLSearch : NSObject |
|
|
|
/** |
|
* @brief 打开高德地图AppStore页面 |
|
*/ |
|
+ (void)getLatestAMapApp; |
|
|
|
/** |
|
* @brief 调起高德地图app驾车导航. |
|
* @param config 配置参数. |
|
* @return 是否成功.若为YES则成功调起,若为NO则无法调起. |
|
*/ |
|
+ (BOOL)openAMapNavigation:(AMapNaviConfig *)config; |
|
|
|
/** |
|
* @brief 调起高德地图app进行路径规划. |
|
* @param config 配置参数. |
|
* @return 是否成功. |
|
*/ |
|
+ (BOOL)openAMapRouteSearch:(AMapRouteConfig *)config; |
|
|
|
/** |
|
* @brief 调起高德地图app进行POI搜索. |
|
* @param config 配置参数. |
|
* @return 是否成功. |
|
*/ |
|
+ (BOOL)openAMapPOISearch:(AMapPOIConfig *)config; |
|
|
|
@end
|
|
|