gpt4 book ai didi

ios - 海拔问题IOS

转载 作者:行者123 更新时间:2023-11-29 11:23:07 25 4
gpt4 key购买 nike

我在获取高度时遇到问题,它返回 0.0000。这是我的代码:

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
NSString *tAltitude = [NSString stringWithFormat:@"%f", [newLocation altitude]];
CLLocationCoordinate2D coord=newLocation.coordinate;
MKCoordinateSpan span = {.latitudeDelta = 0.005, .longitudeDelta = 0.005};
MKCoordinateRegion region = {coord, span};
[map setRegion:region];
NSLog(@"Location: %@", [newLocation description]);
NSLog(@"altitudine:%@",tAltitude); }

最佳答案

如果您在室内,iPhone 会使用基站或 WIFI 位置。这些位置不会返回高度。您必须在室外进行测试才能获得 GPS。

为确保您使用的是 GPS,请同时检查水平精度。如果它在 2 位数的范围内,你应该在 GPS 上,并且很可能你会得到高度读数

关于ios - 海拔问题IOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5788328/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com