0

获得 CLLocationCoordinate2D 的正确方法是什么?

在.h中:

@property (nonatomic, readonly) CLLocationCoordinate2D coordinate;

在.m

//Called when the location can be obtained
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{

    //Get the latitude and longitude location
    CLLocation *lastLocation = [locations lastObject];
    _latitude = [[NSString alloc] initWithFormat:@"%f", lastLocation.coordinate.latitude];
    _longitude = [[NSString alloc] initWithFormat:@"%f", lastLocation.coordinate.longitude];
}

是不是这个:

_coordinate = lastLocation.coordinate;

或这个:

_coordinate = manager.location.coordinate;
4

1 回答 1

0

首先阅读评论中已经说明的文档,因为这是位置编程必须知道的。
其次请注意,这不是您从委托获得的第一个数据,因为它可能是缓存数据(您需要检查时间戳)或无效数据(水平精度小于零)。
您可以使用该代码:

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{
    CLLocation * newLocation = [locations lastObject];
    if (newLocation.horizontalAccuracy < 0) {
        return;
    }
    NSTimeInterval interval = [newLocation.timestamp timeIntervalSinceNow];
    if (abs(interval)>5) {
        return;
    }
   //YOUR CODE HERE
}

希望这会有所帮助,安德里亚

于 2013-04-15T06:11:47.403 回答