BMKGeocodeSearchOption.h 617 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * BMKGeoCodeSearchOption.h
  3. * BMapKit
  4. *
  5. * Copyright 2013 Baidu Inc. All rights reserved.
  6. *
  7. */
  8. #import <BaiduMapAPI_Base/BMKTypes.h>
  9. /// geo检索信息类
  10. @interface BMKGeoCodeSearchOption : NSObject
  11. {
  12. NSString *_address;
  13. NSString *_city;
  14. }
  15. ///地址
  16. @property (nonatomic, strong) NSString *address;
  17. ///城市名
  18. @property (nonatomic, strong) NSString *city;
  19. @end
  20. ///反geo检索信息类
  21. @interface BMKReverseGeoCodeOption : NSObject {
  22. CLLocationCoordinate2D _reverseGeoPoint;
  23. }
  24. ///经纬度
  25. @property (nonatomic, assign) CLLocationCoordinate2D reverseGeoPoint;
  26. @end