gpt4 book ai didi

iOS:Watch Kit 获取当前位置并显示在 map 上

转载 作者:行者123 更新时间:2023-12-01 18:48:10 26 4
gpt4 key购买 nike

我有一个 iOS 应用程序,它使用用户当前位置来显示用户当前位置和目的地点之间的方向/距离。我能够在 map 上显示目的地点,但是当我尝试使用 CLlocationManager 获取用户的当前位置时,它返回坐标 (0,0)。下面是我检索用户位置的代码。

在 Apple Watch 上可以检索当前位置吗?

如果是这样,我在这里做错了什么,该位置正在返回(0,0)?

CLLocationManager *locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBestForNavigation;
locationManager.distanceFilter = 5;
CLLocation *location = locationManager.location;

CLLocationCoordinate2D myLoc = CLLocationCoordinate2DMake(location.coordinate.latitude, location.coordinate.longitude);

另外,我的 .h 文件中有 #import

最佳答案

试试下面的代码:

@property (nonatomic, strong) CLLocationManager *locationManager;

- (void)willActivate
{
self.locationManager = [[CLLocationManager alloc] init];
[self.locationManager setDelegate:self];
[self.locationManager requestLocation];
}

- (void)locationManager:(CLLocationManager *)manager
didUpdateLocations:(NSArray *)locations
{
if ([locations count] == 0) {
// error
return;
}

// success
self.currentLocation = [locations firstObject];
CLLocationCoordinate2D myLoc = CLLocationCoordinate2DMake(
self.currentLocation.coordinate.latitude,
self.currentLocation.coordinate.longitude);
}

- (void)locationManager:(CLLocationManager *)manager
didFailWithError:(nonnull NSError *)error
{
// error
}

关于iOS:Watch Kit 获取当前位置并显示在 map 上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33304120/

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