BMKSuggestionSearchOption.h 585 B

1234567891011121314151617181920212223242526
  1. /*
  2. * BMKSuggestionSearchOption.h
  3. * BMapKit
  4. *
  5. * Copyright 2014 Baidu Inc. All rights reserved.
  6. *
  7. */
  8. #import <Foundation/Foundation.h>
  9. /// sug检索信息类
  10. @interface BMKSuggestionSearchOption : NSObject
  11. {
  12. NSString *_keyword;
  13. NSString *_cityname;
  14. }
  15. ///搜索关键字
  16. @property (nonatomic, strong) NSString *keyword;
  17. ///城市名
  18. @property (nonatomic, strong) NSString *cityname;
  19. ///是否只返回指定城市检索结果(默认:NO)(提示:海外区域暂不支持设置cityLimit)
  20. @property (nonatomic, assign) BOOL cityLimit;
  21. @end