ifish/Ifish/BMKMap3.3.0/BaiduMapAPI_Utils.framework/Headers/BMKOpenRoute.h

46 lines
1.2 KiB
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// BMKOpenRoute.h
// UtilsComponent
//
// Created by wzy on 15/3/26.
// Copyright (c) 2015年 baidu. All rights reserved.
//
#ifndef UtilsComponent_BMKOpenRoute_h
#define UtilsComponent_BMKOpenRoute_h
#import "BMKOpenRouteOption.h"
#import <BaiduMapAPI_Base/BMKTypes.h>
///调起百度地图 -- 路线
///注从iphone百度地图 8.2.0版本开始支持
@interface BMKOpenRoute : NSObject
/**
* 调起百度地图步行路线页面
* 注从iphone百度地图 8.2.0版本开始支持
*@param option 步行路线参数类BMKOpenWalkingRouteOption
*@return 调起结果
*/
+ (BMKOpenErrorCode)openBaiduMapWalkingRoute:(BMKOpenWalkingRouteOption *) option;
/**
* 调起百度地图公交路线页面
* 注从iphone百度地图 8.2.0版本开始支持
*@param option 公交路线参数类BMKOpenTransitRouteOption
*@return 调起结果
*/
+ (BMKOpenErrorCode)openBaiduMapTransitRoute:(BMKOpenTransitRouteOption *) option;
/**
* 调起百度地图驾车路线检索页面
* 注从iphone百度地图 8.2.0版本开始支持
*@param option 驾车路线参数类BMKOpenDrivingRouteOption
*@return 调起结果
*/
+ (BMKOpenErrorCode)openBaiduMapDrivingRoute:(BMKOpenDrivingRouteOption *) option;
@end
#endif