BMKBusLineSearchOption.h 423 B

12345678910111213141516171819202122
  1. /*
  2. * BMKBusLineSearchOption.h
  3. * BMapKit
  4. *
  5. * Copyright 2014 Baidu Inc. All rights reserved.
  6. *
  7. */
  8. #import <Foundation/Foundation.h>
  9. /// 公交线路检索信息类
  10. @interface BMKBusLineSearchOption : NSObject
  11. {
  12. NSString *_city;
  13. NSString *_busLineUid;
  14. }
  15. ///城市名
  16. @property (nonatomic, strong) NSString *city;
  17. ///公交线路的uid
  18. @property (nonatomic, strong) NSString *busLineUid;
  19. @end