BMKLocationVersion.h 753 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // BMKLocationVersion.h
  3. // LocationComponent
  4. //
  5. // Created by wzy on 15/9/9.
  6. // Copyright © 2015年 baidu. All rights reserved.
  7. //
  8. #ifndef BMKLocationVersion_h
  9. #define BMKLocationVersion_h
  10. #import <UIKit/UIKit.h>
  11. /**
  12. *重要:
  13. *location组件的版本和base组件的版本必须一致,否则不能正常使用
  14. */
  15. /**
  16. *获取当前地图API location组件 的版本号
  17. *当前location组件版本 : 3.2.1
  18. *return 返回当前API location组件 的版本号
  19. */
  20. UIKIT_EXTERN NSString* BMKGetMapApiLocationComponentVersion();
  21. /**
  22. *检查location组件的版本号是否和base组件的版本号一致
  23. *return 版本号一致返回YES
  24. */
  25. UIKIT_EXTERN BOOL BMKCheckLocationComponentIsLegal();
  26. #endif /* BMKLocationVersion_h */