单军华
2018-05-04 25f409185a53e5e7beb17518a684298d92d31b3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
//  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>
 
/**
 *获取当前地图API location组件 的版本号
 *当前location组件版本 : 1.1.0
 *@return  返回当前API location组件 的版本号
 */
UIKIT_EXTERN NSString* BMKGetMapApiLocationComponentVersion();
 
/**
 *获取当前地图API location组件 的float版本号
 *当前location组件版本 : 1.1
 *@return  返回当前API location组件 的float版本号
 */
UIKIT_EXTERN float BMKGetMapApiLocationComponentFloatVersion();
 
 
 
#endif /* BMKLocationVersion_h */