美文网首页
解析地图post及附近违章查询2

解析地图post及附近违章查询2

作者: 法库德 | 来源:发表于2017-09-21 21:27 被阅读0次

    业务处理层.h

    //分享单例对象

    + (instancetype)shareLoadData;

    //获取数据

    - (void)getData:(NSDictionary *)dic;

    //定义block传值

    @property (nonatomic,strong)void (^dataDic)(NSDictionary *dataDictionary);

    .m

    //定义静态变量

    static LoadData *ld = nil;

    //分享单例对象

    + (instancetype)shareLoadData

    {

    static dispatch_once_t onceToken;

    dispatch_once(&onceToken, ^{

    ld = [[LoadData alloc]init];

    });

    return ld;

    }

    + (instancetype)allocWithZone:(struct _NSZone *)zone

    {

    if (!ld) {

    ld = [super allocWithZone:zone];

    }

    return ld;

    }

    - (id)copy

    {

    return self;

    }

    - (id)mutableCopy

    {

    return self;

    }

    //获取数据

    - (void)getData:(NSDictionary *)dic

    {

    //创建请求网址

    NSURL *url = [NSURL URLWithString:@"http://api.jisuapi.com/illegaladdr/coord"];

    //创建请求对象

    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];

    //设置请求方式

    request.HTTPMethod = @"POST";

    //设置请求参数

    NSString *str = [NSString stringWithFormat:@"lat=%@&lng=%@&num=%@&range=%@&appkey=%@",dic[@"lat"],dic[@"lng"],dic[@"num"],dic[@"range"],dic[@"appkey"]];

    //设置请求方法体

    request.HTTPBody = [str dataUsingEncoding:NSUTF8StringEncoding];

    //获取会话对象

    NSURLSession *session = [NSURLSession sharedSession];

    //请求数据

    NSURLSessionDataTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {

    //解析json数据

    NSDictionary *dataDic = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableLeaves error:nil];

    //block传值

    dispatch_async(dispatch_get_main_queue(), ^{

    self.dataDic(dataDic);

    });

    }];

    //开始请求

    [task resume];

    }

    第一个视图

    .h

    #import "LoadData.h"

    #import "DetailViewController.h"

    #import<MapKit/MapKit.h>

    #import<CoreLocation/CoreLocation.h>

    <CLLocationManagerDelegate>

    {

    //定义变量地图视图、定位对象、当前位置

    MKMapView *mv;

    CLLocationManager *lm;

    CLLocation *loc;

    [super viewDidLoad];

    //创建导航按钮

    UIBarButtonItem *item = [[UIBarButtonItem alloc]initWithTitle:@"附近违章高发地" style:UIBarButtonItemStylePlain target:self action:@selector(itemClicked)];

    self.navigationItem.rightBarButtonItem = item;

    //初始化地图视图

    mv = [[MKMapView alloc]initWithFrame:self.view.bounds];

    mv.mapType = MKMapTypeStandard;

    mv.zoomEnabled = YES;

    mv.rotateEnabled = YES;

    mv.scrollEnabled = YES;

    mv.showsUserLocation = YES;

    [self.view addSubview:mv];

    //初始化定位管理器

    lm = [[CLLocationManager alloc]init];

    [lm requestWhenInUseAuthorization];

    //设置代理

    lm.delegate = self;

    //设置精确度

    lm.desiredAccuracy = kCLLocationAccuracyBest;

    //色织过滤器

    lm.distanceFilter = kCLDistanceFilterNone;

    //开始定位

    [lm startUpdatingLocation];

    }

    //设置导航按钮响应方法

    - (void)itemClicked

    {

    //跳转

    DetailViewController *dvc = [[DetailViewController alloc]init];

    dvc.loc = loc;

    [self.navigationController pushViewController:dvc animated:YES];

    }

    //设置定位响应方法- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(nonnull NSArray*)locations

    {

    loc = locations.lastObject;

    //定位位置

    MKCoordinateSpan span = {0.01,0.01};

    MKCoordinateRegion region = {loc.coordinate,span};

    [mv setRegion:region animated:YES];

    //添加锚点

    MKPointAnnotation *anno = [[MKPointAnnotation alloc]init];

    anno.coordinate = loc.coordinate;

    [mv addAnnotation:anno];

    }

    跳转

    .h

    //定义属性当前位置

    @property (nonatomic,strong)CLLocation *loc;

    .h

    <UITableViewDataSource,UITableViewDelegate>

    {

    //定义变量数据字典、表格

    NSArray *arr;

    UITableView *table;

    }

    //设置请求参数

    NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:[NSString stringWithFormat:@"%f",self.loc.coordinate.latitude],@"lat",[NSString stringWithFormat:@"%f",self.loc.coordinate.longitude],@"lng",@"1000",@"range",@"10",@"num",@"de394933e1a3e2db",@"appkey", nil];

    //调用业务处理类请求数据

    [[LoadData shareLoadData]getData:dic];

    //初始化表格

    table = [[UITableView alloc]initWithFrame:self.view.bounds];

    table.dataSource = self;

    table.delegate = self;

    [self.view addSubview:table];

    - (void)viewWillAppear:(BOOL)animated

    {

    //更新数据字典

    [LoadData shareLoadData].dataDic = ^(NSDictionary *dataDictionary) {

    arr = dataDictionary[@"result"];

    //更新表格

    [table reloadData];

    };

    }

    //设置行数

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

    {

    return arr.count;

    }

    //设置单元格内容

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

    {

    static NSString *cellid = @"cellid";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellid];

    if (!cell) {

    cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellid];

    }

    NSDictionary *dic = arr[indexPath.row];

    cell.textLabel.text = [NSString stringWithFormat:@"%@%@%@",dic[@"province"],dic[@"city"],dic[@"address"]];

    cell.detailTextLabel.text = [NSString stringWithFormat:@"%@",dic[@"content"]];

    return cell;

    }

    相关文章

      网友评论

          本文标题:解析地图post及附近违章查询2

          本文链接:https://www.haomeiwen.com/subject/drgtextx.html