0

我可以通过's方法成功获得结果(如locality,ISOcountryCode等) 。 但是我怎样才能将这个地方与结果相匹配呢?CLGeocoderreverseGeocodeLocation:completionHandler:

例如:如果结果的城市(地区)是Hangzhou City,我可以简单地通过使用来匹配它

if ([placemark.locality isEqualToString:@"Hangzhou City"]) {...}

但是如您所知,有数百万个城市,不可能将城市名称一一获取并硬编码到我的应用程序中。

那么,有没有办法解决这个问题呢?或者是否存在任何框架?或者只有几个文件包含与CLGeocoder结果匹配的国家和城市名称?即使是模糊坐标匹配解决方案也可以(我的意思是,一个城市有自己的区域,我可以通过坐标确定城市,但我现在仍然需要获取每个城市的区域面积)。


部署目标iOS5.0

4

1 回答 1

1

那么有一个更简单的方法,您可以使用反向 GeocodeLocation 来获取该地点的信息。你必须知道这在每个城市都不会起作用。有关更多信息,请查看 Apple 的CLGeocoder 类参考地理编码位置数据文档。

所以你可以创建和处理服务的对象

#import <Foundation/Foundation.h>
#import <CoreLocation/CoreLocation.h>

@interface locationUtility : NSObject<CLLocationManagerDelegate>{
  CLLocationManager *locationManager;
  CLPlacemark *myPlacemark;
  CLGeocoder * geoCoder;
}

@property (nonatomic,retain) CLLocationManager *locationManager;

@end

和实施

#import "locationUtility.h"

@implementation locationUtility
@synthesize locationManager;

#pragma mark - Init
-(id)init {
  NSLog(@"locationUtility - init");
  self=[super init];

  locationManager = [[CLLocationManager alloc] init];
  locationManager.delegate = self;
  locationManager.desiredAccuracy = kCLLocationAccuracyBest;
  locationManager.distanceFilter = kCLDistanceFilterNone;
  [locationManager startMonitoringSignificantLocationChanges];
  geoCoder= [[CLGeocoder alloc] init];
  return self;
}

- (void) locationManager:(CLLocationManager *) manager didUpdateToLocation:(CLLocation *) newLocation
            fromLocation:(CLLocation *) oldLocation {
  [geoCoder reverseGeocodeLocation:newLocation completionHandler:^(NSArray *placemarks, NSError *error) {
     CLPlacemark *placemark = [placemarks objectAtIndex:0];
     myPlacemark=placemark; 
     // Here you get the information you need  
     // placemark.country;
     // placemark.administrativeArea;
     // placemark.subAdministrativeArea;
     // placemark.postalCode];
    }];
}

-(void) locationManager:(CLLocationManager *) manager didFailWithError:(NSError *) error {
  NSLog(@"locationManager didFailWithError: %@", error.description);
}

@end
于 2012-05-03T23:34:51.730 回答