- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 watchOS 上有一个功能锻炼应用程序,用于跟踪室内和室外运行情况。我正在尝试使用 HKWorkoutRouteBuilder 将户外运行路线添加到 HealthKit。实际户外运行期间的实际测试仅显示 map 上的部分路线更新,如下面的一小部分蓝点所示;
路由更新来自我在以下类(class)中设置的 CoreLocation。
class LocationManager: NSObject, CLLocationManagerDelegate {
public var globalLocationManager: CLLocationManager?
private var routeBuilder: HKWorkoutRouteBuilder?
public func setUpLocationManager() {
globalLocationManager = CLLocationManager()
globalLocationManager?.delegate = self
globalLocationManager?.desiredAccuracy = kCLLocationAccuracyBest
// Update every 13.5 meters in order to acheive updates no faster than once every 3sec.
// This assumes runner is running at no faster than 6min/mile - 3.7min/km
globalLocationManager?.distanceFilter = 13.5
// Can use `kCLDistanceFilterNone` 👆 which will give more updates but still only at wide intervals.
globalLocationManager?.activityType = .fitness
/*
from the docs
...if your app needs to receive location events while in the background,
it must include the UIBackgroundModes key (with the location value) in its Info.plist file.
*/
routeBuilder = HKWorkoutRouteBuilder(healthStore: healthStore, device: .local())
globalLocationManager?.startUpdatingLocation()
globalLocationManager?.allowsBackgroundLocationUpdates = true
}
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
// Filter the raw data, excluding anything greater than 50m accuracy
let filteredLocations = locations.filter { isAccurateTo -> Bool in
isAccurateTo.horizontalAccuracy <= 50
}
guard !filteredLocations.isEmpty else { return }
routeBuilder?.insertRouteData(filteredLocations, completion: { success, error in
if error != nil {
// throw alert due to error in saving route.
print("Error in \(#function) \(error?.localizedDescription ?? "Error in Route Builder")")
}
})
}
// Called in class WorkoutController when workout session ends.
public func addRoute(to workout: HKWorkout) {
routeBuilder?.finishRoute(with: workout, metadata: nil, completion: { workoutRoute, error in
if workoutRoute == nil {
fatalError("error saving workout route")
}
})
}
}
然后使用
HKAnchoredObjectQuery
将该路线添加到 SwiftUI map 中。与以下;
public func getRouteFrom(workout: HKWorkout) {
let mapDisplayAreaPadding = 1.3
let runningObjectQuery = HKQuery.predicateForObjects(from: workout)
let routeQuery = HKAnchoredObjectQuery(type: HKSeriesType.workoutRoute(), predicate: runningObjectQuery, anchor: nil, limit: HKObjectQueryNoLimit) { (query, samples, deletedObjects, anchor, error) in
guard error == nil else {
fatalError("The initial query failed.")
}
// Make sure you have some route samples
guard samples!.count > 0 else {
return
}
let route = samples?.first as! HKWorkoutRoute
// Create the route query from HealthKit.
let query = HKWorkoutRouteQuery(route: route) { (query, locationsOrNil, done, errorOrNil) in
// This block may be called multiple times.
if let error = errorOrNil {
print("Error \(error.localizedDescription)")
return
}
guard let locations = locationsOrNil else {
fatalError("*** NIL found in locations ***")
}
let latitudes = locations.map {
$0.coordinate.latitude
}
let longitudes = locations.map {
$0.coordinate.longitude
}
// Outline map region to display
guard let maxLat = latitudes.max() else { fatalError("Unable to get maxLat") }
guard let minLat = latitudes.min() else { return }
guard let maxLong = longitudes.max() else { return }
guard let minLong = longitudes.min() else { return }
if done {
let mapCenter = CLLocationCoordinate2D(latitude: (minLat + maxLat) / 2, longitude: (minLong + maxLong) / 2)
let mapSpan = MKCoordinateSpan(latitudeDelta: (maxLat - minLat) * mapDisplayAreaPadding,
longitudeDelta: (maxLong - minLong) * mapDisplayAreaPadding)
DispatchQueue.main.async {
// Push to main thread to drop dots on the map.
// Without this a warning will occur.
self.region = MKCoordinateRegion(center: mapCenter, span: mapSpan)
locations.forEach { (location) in
self.overlayRoute(at: location)
}
}
}
// stop the query by calling:
// store.stop(query)
}
healthStore.execute(query)
}
routeQuery.updateHandler = { (query, samples, deleted, anchor, error) in
guard error == nil else {
// Handle any errors here.
fatalError("The update failed.")
}
// Process updates or additions here.
}
healthStore.execute(routeQuery)
}
我无法确定为什么 map 注释仅以突发方式显示。我已经改了
CLLocationManager.distanceFilter
到不同的值以及
kCLDistanceFilterNone
.对于 CoreLocation 授权,我使用了 whileInUse 和 Always 授权,更新频率没有变化。似乎更新是按时间间隔进行的,而不是经过的距离,但我不能完全确定。让应用程序在屏幕上和后台都处于事件状态似乎对位置更新没有影响。
public func setupWorkoutSession() {
let authorizationStatus = healthStore.authorizationStatus(for: HKWorkoutType.workoutType())
let typesToShare: Set = [HKQuantityType.workoutType(), HKSeriesType.workoutRoute()]
let typesToRead: Set = [
HKQuantityType.quantityType(forIdentifier: .heartRate)!,
HKQuantityType.quantityType(forIdentifier: .activeEnergyBurned)!,
HKQuantityType.quantityType(forIdentifier: .distanceWalkingRunning)!,
HKSeriesType.workoutType(),
HKSeriesType.workoutRoute()
]
if authorizationStatus == .sharingDenied {
showAlertView()
return
}
// Request authorization for those quantity types.
healthStore.requestAuthorization(toShare: typesToShare, read: typesToRead) { (success, error) in
if success {
self.beginWorkout()
} else if error != nil {
// Handle errors.
}
}
}
最佳答案
从您的问题中不清楚这些是前台更新还是后台更新,但考虑到这些间隔似乎也经常出现,我怀疑您主要是在获取后台位置更新。
您已经获得了 activityType
设置为 .fitness
,我相信它提供了最高分辨率,但无论如何 iOS 仍然会定期让位置管理器休眠以节省能量。
由于您正在收集您期望的或多或少的恒定运动场景,因此设置 pausesLocationUpdatesAutomatically
也是一个好主意。至 false
- 通过健身/运行场景的开始和停止,明确控制 CLManager 的操作。这将消耗更多电池,但应该为您提供更一致的更新。
您仍然可能会有一些差距,最好的解决方案可能是根据您收到它们时的时间戳在这些差距之间插入路线位置。在一些人口稠密的城市地区,您可能还需要或想要平滑或以其他方式限制路线点,因为我发现获得穿过建筑物的路线位置而不是显示您所在的街道或人行道是“容易的”走在。在天际线更开阔和建筑物较低的地方,我几乎没有看到这个问题。
关于swift - HKWorkoutRouteBuilder 和 CLLocationManager 仅以增量方式添加路线更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67271580/
我有两种类型的路由 Public 和 Private。 只有用户登录后才能访问所有私有(private)路由: return tokenService.token ? ( <>
我已按照 Laravel 5.5 文档在我们的应用程序上要求、安装和配置 Laravel Passport。我们仅使用密码授予功能,因为我们不打算将其用作社交登录工具。但是,按照所有说明操作后,我在尝
我想设置事件菜单项的样式,为此我需要将当前 url 与路由进行比较。我知道我可以在 javascript 中做到这一点,但我想知道其他人是如何解决这个问题的。 有什么建议么? 伪代码: My Page
我正在尝试在浏览器上以图形方式显示路径/路线以供客户查看。例如,基于 txt 或 XML 文件,包含说明。 4 90 5 90 2 或 F4,L90,F5,L90,F2 相当于
我创建了一个中间件来阻止我的 laravel 应用程序中的某些路由,但不起作用,无法弄清楚我做错了什么,这是我的代码: ps:我使用的是 laravel 5.2 路线: Route::get('sec
我正在使用 Java 工作。给定一个矩阵 NxM,我需要找到通过该数组的所有可能路径。只允许斜向上或斜向下,或向右斜行。 4x4 矩阵示例: 3 5 7 9 2 4 6 8 9 3 7
我是 Marionette 新手,只是找不到上类路线。 我正在使用 Marionette 的 2.4.1 版本,并尝试以最简单的方式进行操作,以便它能够正常工作。 此代码适用于旧版本的 Marione
我是 AngularJS 的新手。我正在尝试从这个网站( https://docs.angularjs.org/tutorial/step_07 )学习 AngularJS。我的代码如下 index.
我在 yandexmapkit-android 项目上工作。图书馆链接是 https://github.com/yandexmobile/yandexmapkit-android 文档非常薄弱,git
我正在阅读有关 Angular 路由的文档并创建了一个简单的测试: const routes: Route[] = [ { path: '', redirectTo: '/home', pat
我正在开发一项服务 (spring-boot),它获取一个 ID 列表,一个一个地从数据库中获取对象,将这些对象聚合成批处理,然后将它们保存在其他地方。目前,聚合后的批量大小约为 50 个对象,大约每
我正在制作一个网站,在用户登录后,用户将被重定向到主页。网站的主页和所有其他页面只能由登录用户访问,但即使在用户登录后(firebase auth),网站的其余部分( protected 路由)仍然无
我有一个惰性模块,我希望在桌面和移动设备上有不同的体验。基本上我想要我的桌面布局如下: Component1 显示一个列表,用户在列表中选择一个项目,component2 将显示详细信息。我创建了名为
我是 Angular 的新手,我正在尝试让我的路由器工作。基本上我在 / 有一个主页,其中有一个到 /courses 的路由器链接,它运行良好,但是当我重新加载 /courses 时(或输入地址in)
完整的 Mojolicious 应用程序有 routes将转储应用程序路由的命令: script/my_app.pl routes 我如何从 Lite 的测试脚本中做同样的事情应用? use Mojo
我有一个 Camel 2.13.1 应用程序,它使用我通过 CXF 组件访问的外部 Web 服务。我使用 Spring XML 路由元素的 startupOrder 属性来确保在我设置为在启动时调用一
我们有一个在 Karaf 2.4.3 和 Camel 2.15.3 上运行的数据处理应用程序。 在这个应用程序中,我们有一堆导入数据的路由。我们有一个管理 View ,其中列出了这些路由以及每条路由的
我正在尝试组合一个应用程序,我可以在其中查询谷歌路线服务,存储结果以建立缓存,然后根据需要呈现路线。 我可以取回方向数据并将其存储在数据库中就好了,这一切都很好,现在当我在 map 上渲染方向时,我的
我根据 Ryan Bates 的 railscast 使用设计登录创建了一个新项目. 它没有注册路线(与我之前制作的项目不同,步骤完全相同) This image显示了两个“rake 路由”命令。顶
我发现 Google Maps API 通过以下方式支持路线: var map; var directionsPanel; var directions; function initialize()
我是一名优秀的程序员,十分优秀!