JXGoogleMapVC.h 1014 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // JXGoogleMapVC.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2018/8/20.
  6. // Copyright © 2018年 Reese. All rights reserved.
  7. //
  8. #import "admobViewController.h"
  9. typedef NS_OPTIONS(NSUInteger, JXGooLocationType){
  10. JXGooLocationTypeCurrentLocation = 0,
  11. JXGooLocationTypeShowStaticLocation = 2,
  12. };
  13. @interface JXGoogleMapVC : admobViewController{
  14. NSInteger _selIndex;
  15. NSMutableArray *_nearMarkArray; //周边检索数据源
  16. UITableView * _nearMarkTableView;
  17. }
  18. @property (nonatomic,retain) UIButton * sendButton;
  19. @property (nonatomic,assign) JXGooLocationType locationType;
  20. @property (nonatomic,assign) double longitude; //右边
  21. @property (nonatomic,assign) double latitude; //左边
  22. @property (nonatomic, assign) NSObject* delegate;
  23. @property (nonatomic, assign) SEL didSelect;
  24. @property (nonatomic,copy) NSString * address;
  25. @property (nonatomic,retain) NSMutableArray *locations;
  26. @property (nonatomic, copy) NSString *placeNames;
  27. @property (assign, nonatomic) BOOL isSend;
  28. @end