LocServiceVC.h 456 B

123456789101112131415161718192021
  1. //
  2. // LocServiceVC.h
  3. // LN_School
  4. //
  5. // Created by EchoShacolee on 2017/12/16.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^leeBlock)(double lng,double lat);//经纬度
  10. @class BMKMapView;
  11. @interface LocServiceVC : UIViewController
  12. @property (weak, nonatomic) IBOutlet BMKMapView *mapView;
  13. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  14. @property(nonatomic,copy)leeBlock block;
  15. @end