BMKOpenOption.h 551 B

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