// // LocServiceVC.h // LN_School // // Created by EchoShacolee on 2017/12/16. // Copyright © 2017年 Danson. All rights reserved. // #import typedef void (^leeBlock)(double lng,double lat);//经纬度 @class BMKMapView; @interface LocServiceVC : UIViewController @property (weak, nonatomic) IBOutlet BMKMapView *mapView; @property (weak, nonatomic) IBOutlet UITableView *tableView; @property(nonatomic,copy)leeBlock block; @end