1234567891011121314151617181920212223242526272829303132 |
- //
- // BMKLocationVersion.h
- // LocationComponent
- //
- // Created by wzy on 15/9/9.
- // Copyright © 2015年 baidu. All rights reserved.
- //
- #ifndef BMKLocationVersion_h
- #define BMKLocationVersion_h
- #import <UIKit/UIKit.h>
- /**
- *重要:
- *location组件的版本和base组件的版本必须一致,否则不能正常使用
- */
- /**
- *获取当前地图API location组件 的版本号
- *当前location组件版本 : 3.2.1
- *return 返回当前API location组件 的版本号
- */
- UIKIT_EXTERN NSString* BMKGetMapApiLocationComponentVersion();
- /**
- *检查location组件的版本号是否和base组件的版本号一致
- *return 版本号一致返回YES
- */
- UIKIT_EXTERN BOOL BMKCheckLocationComponentIsLegal();
- #endif /* BMKLocationVersion_h */
|