JCAddMapViewController.h 674 B

1234567891011121314151617181920
  1. #import <UIKit/UIKit.h>
  2. #import <BaiduMapAPI_Base/BMKBaseComponent.h>
  3. #import <BaiduMapAPI_Map/BMKMapComponent.h>
  4. #import <BaiduMapAPI_Search/BMKSearchComponent.h>
  5. #import <BMKLocationKit/BMKLocationComponent.h>
  6. #import <BaiduMapAPI_Utils/BMKUtilsComponent.h>
  7. #import <BaiduMapAPI_Map/BMKMapView.h>
  8. #import "AddMapTableViewCell.h"
  9. typedef void (^ MapAddress)(NSDictionary *dic);
  10. @interface JCAddMapViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
  11. @property (nonatomic, copy) MapAddress addressBlock;
  12. @property (nonatomic, assign) BOOL isOnlyShowMap;
  13. @property (nonatomic, assign) double lon;
  14. @property (nonatomic, assign) double lat;
  15. @end