zoukankan      html  css  js  c++  java
  • oc知道经纬度求位置

      CLLocation *newLocation = [locations lastObject];

        

        CLGeocodeCompletionHandler handler = ^(NSArray *place, NSError *error) {

            

            for (CLPlacemark *placemark in place) {

                

                NSString *cityStr=[placemark.addressDictionary objectForKey:@"City"];

                locationLab.text = cityStr;

                break;

                /*

                 NSString *cityStr=[placemark.addressDictionary objectForKey:@"City"];

                 

                 NSLog(@”city %@”,cityStr);

                 

                 NSString *Street=[placemark.addressDictionary objectForKey:@"Street"];

                 

                 NSLog(@”Street %@”,Street);

                 

                 NSString *State=[placemark.addressDictionary objectForKey:@"State"];

                 

                 NSLog(@”State %@”,State);

                 

                 NSString *ZIP=[placemark.addressDictionary objectForKey:@"ZIP"];

                 

                 NSLog(@”ZIP %@”,ZIP);

                 

                 NSString *Country=[placemark.addressDictionary objectForKey:@"Country"];

                 

                 NSLog(@”Country %@”,Country);

                 

                 NSString *CountryCode=[placemark.addressDictionary objectForKey:@"CountryCode"];

                 

                 NSLog(@”CountryCode %@”,CountryCode);

                 

                 */

                

            }

            

        };

        //CLGeocoder

        [self.geocoder reverseGeocodeLocation:newLocation completionHandler:handler];

  • 相关阅读:
    DOS命令大全 1 attrib,delete等 外部 内部 命令都有
    css图像映射
    简单的css样式控制分页效果
    (转)AjaxPro实现机制探讨——Ajax是如何调用服务器端C#方法?
    学习笔记ADO.Net方面
    一个挺好用的数据库操作类
    .net开发人员应该知道(二)
    js与C#之间相互调用的一些方法
    JS 事件大全
    .net开发人员应该知道(一)
  • 原文地址:https://www.cnblogs.com/hualuoshuijia/p/5391499.html
Copyright © 2011-2022 走看看