AMapSearchServices.h 474 B

123456789101112131415161718192021
  1. //
  2. // AMapSearchServices.h
  3. // AMapSearchKit
  4. //
  5. // Created by xiaoming han on 15/6/18.
  6. // Copyright (c) 2015年 xiaoming han. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface AMapSearchServices : NSObject
  10. + (AMapSearchServices *)sharedServices;
  11. /// API Key, 在使用搜索服务之前需要先绑定key.
  12. @property (nonatomic, copy) NSString *apiKey;
  13. /// SDK 版本号, 形式如v3.0.0
  14. @property (nonatomic, readonly) NSString *SDKVersion;
  15. @end