CLGeocoder 지리적 위치, 지리적 위치

2857 단어
//
//  ViewController.m
//  LocationGenerateCoder
//
//  Created by hq on 16/5/17.
//  Copyright  2016  hanqing. All rights reserved.
//

#import "ViewController.h"
#import 

@interface ViewController ()

//         
@property(nonatomic,strong) CLGeocoder *geo;

@property (weak, nonatomic) IBOutlet UITextView *addressTextView;

@property (weak, nonatomic) IBOutlet UITextField *latitude;

@property (weak, nonatomic) IBOutlet UITextField *longtitude;

- (IBAction)getAddress;

- (IBAction)getDegree;

@end

@implementation ViewController

-(CLGeocoder *)geo{
    
    if (_geo==nil) {
        _geo=[[CLGeocoder alloc] init];
    }
    return _geo;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    
    
    

}

//              
- (IBAction)getAddress {
    
    CLLocationDegrees lat=[self.latitude.text doubleValue];
    CLLocationDegrees lon=[self.longtitude.text doubleValue];
    
    if ([self.latitude.text length]==0||[self.latitude.text length]==0) {
        NSLog(@"      ");
        return;
    }
    
    CLLocation *loc=[[CLLocation alloc]initWithLatitude:lat longitude:lon];

    [self.geo reverseGeocodeLocation:loc completionHandler:^(NSArray * _Nullable placemarks, NSError * _Nullable error) {
       
        if (error) {
            NSLog(@"   ");
            return ;
        }
        
        for (CLPlacemark *mark in placemarks) {
            
            //   
            NSString *state=mark.administrativeArea;
            
            //    
            NSString  *city=mark.locality;
            
            //   
            NSString *thoroughfare=mark.thoroughfare;
            
            NSLog(@"%@%@,%@",state,city,thoroughfare);
            
        }
    }];
}

//           
- (IBAction)getDegree {
    
    NSString *inputAddress=self.addressTextView.text;
    
    if ([inputAddress length]==0) {
        NSLog(@"        ");
        return;
    }
    
    [self.geo geocodeAddressString:inputAddress completionHandler:^(NSArray * _Nullable placemarks, NSError * _Nullable error) {
        
        
        for (CLPlacemark *mark in placemarks) {
            
            CLLocation *loc=mark.location;
            
            //      
            self.latitude.text=@(loc.coordinate.latitude).stringValue;
            self.longtitude.text=@(loc.coordinate.longitude).stringValue;
            
        }
    }];
    
    /**              ,       
    [self.geo geocodeAddressString:@"    " inRegion:(nullable CLRegion *)
     completionHandler:^(NSArray * _Nullable placemarks, NSError * _Nullable error) {
     
     }];
     */
    
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    
}



@end

좋은 웹페이지 즐겨찾기