单军华
2018-07-11 7b02207537d35bfa1714bf8beafc921f717d100a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  BMKOpenOption.h
//  UtilsComponent
//
//  Created by wzy on 15/3/26.
//  Copyright (c) 2015年 baidu. All rights reserved.
//
 
#ifndef UtilsComponent_BMKOpenOption_h
#define UtilsComponent_BMKOpenOption_h
 
///调起百度地图参数基类
@interface BMKOpenOption : NSObject
 
///应用返回scheme,用于调起后返回,没有不能返回
@property (nonatomic, strong) NSString* appScheme;
///调起百度地图客户端失败后,是否支持调起web地图,默认:YES
@property (nonatomic, assign) BOOL isSupportWeb;
 
@end
 
#endif