Map Doc  1.0
iOS-引擎SDK-开放平台
MBPedestrianGuide.h
浏览该文件的文档.
1 //
2 // MBPedestrianGuide.h
3 // iNaviCore
4 //
5 // Created by fanyunlong on 4/12/16.
6 // Copyright © 2016 Mapbar. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @class MBPedestrianGuide;
12 
13 @protocol MBPedestrianGuideDelegate <NSObject>
14  @optional
15 -(void)pedestrianGuide:(MBPedestrianGuide*)guide action:(void*)action;
16 -(void)pedestrianGuide:(MBPedestrianGuide*)guide speak:(NSString*)text;
17 @end
18 
24 @interface MBPedestrianGuide : NSObject
25 
31 @property (nonatomic, assign) BOOL enableVoice;
32 
38 @property (nonatomic, weak) id<MBPedestrianGuideDelegate>delegate;
39 @end
Definition: MBPedestrianGuide.h:24
BOOL enableVoice
Definition: MBPedestrianGuide.h:31
id< MBPedestrianGuideDelegate > delegate
Definition: MBPedestrianGuide.h:38