-
Notifications
You must be signed in to change notification settings - Fork 319
/
Copy pathNavigationViewportDataSource.swift
578 lines (480 loc) · 29.8 KB
/
NavigationViewportDataSource.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
import MapboxMaps
import MapboxCoreNavigation
import Turf
import MapboxDirections
/**
Class, which conforms to `ViewportDataSource` protocol and provides default implementation of it.
*/
public class NavigationViewportDataSource: ViewportDataSource {
/**
Delegate, which is used to notify `NavigationCamera` regarding upcoming `CameraOptions`
related changes.
*/
public weak var delegate: ViewportDataSourceDelegate?
/**
`CameraOptions`, which are used on iOS when transitioning to `NavigationCameraState.following` or
for continuous updates when already in `NavigationCameraState.following` state.
*/
public var followingMobileCamera: CameraOptions = CameraOptions()
/**
`CameraOptions`, which are used on CarPlay when transitioning to `NavigationCameraState.following` or
for continuous updates when already in `NavigationCameraState.following` state.
*/
public var followingCarPlayCamera: CameraOptions = CameraOptions()
/**
`CameraOptions`, which are used on iOS when transitioning to `NavigationCameraState.overview` or
for continuous updates when already in `NavigationCameraState.overview` state.
*/
public var overviewMobileCamera: CameraOptions = CameraOptions()
/**
`CameraOptions`, which are used on CarPlay when transitioning to `NavigationCameraState.overview` or
for continuous updates when already in `NavigationCameraState.overview` state.
*/
public var overviewCarPlayCamera: CameraOptions = CameraOptions()
/**
Options, which give the ability to control whether certain `CameraOptions` will be generated
by `NavigationViewportDataSource` or can be provided by user directly.
*/
public var options: NavigationViewportDataSourceOptions = NavigationViewportDataSourceOptions()
/**
Value of default viewport padding.
*/
var viewportPadding: UIEdgeInsets = .zero
weak var mapView: MapView?
var viewportDataSourceType: ViewportDataSourceType = .passive
var heading: CLHeading?
// MARK: Initializer Methods
/**
Initializer of `NavigationViewportDataSource` object.
- parameter mapView: Instance of `MapView`, which is going to be used for several operations,
which includes (but not limited to) subscription to raw location updates via `LocationConsumer`
(in case if `viewportDataSourceType` was set to `.raw`). `MapView` will be weakly stored by
`NavigationViewportDataSource`.
- parameter viewportDataSourceType: Type of locations, which will be used to prepare `CameraOptions`.
*/
public required init(_ mapView: MapView, viewportDataSourceType: ViewportDataSourceType = .passive) {
self.mapView = mapView
self.viewportDataSourceType = viewportDataSourceType
subscribeForNotifications()
}
deinit {
unsubscribeFromNotifications()
}
// MARK: Notifications Observer Methods
func subscribeForNotifications() {
switch viewportDataSourceType {
case .raw:
mapView?.location.addLocationConsumer(newConsumer: self)
case .passive:
NotificationCenter.default.addObserver(self,
selector: #selector(progressDidChange(_:)),
name: .passiveLocationManagerDidUpdate,
object: nil)
case .active:
NotificationCenter.default.addObserver(self,
selector: #selector(progressDidChange(_:)),
name: .routeControllerProgressDidChange,
object: nil)
}
}
func unsubscribeFromNotifications() {
switch viewportDataSourceType {
case .raw:
mapView?.location.removeLocationConsumer(consumer: self)
case .passive:
NotificationCenter.default.removeObserver(self,
name: .passiveLocationManagerDidUpdate,
object: nil)
case .active:
NotificationCenter.default.removeObserver(self,
name: .routeControllerProgressDidChange,
object: nil)
}
}
@objc func progressDidChange(_ notification: NSNotification) {
let passiveLocation = notification.userInfo?[PassiveLocationManager.NotificationUserInfoKey.locationKey] as? CLLocation
let activeLocation = notification.userInfo?[RouteController.NotificationUserInfoKey.locationKey] as? CLLocation
let routeProgress = notification.userInfo?[RouteController.NotificationUserInfoKey.routeProgressKey] as? RouteProgress
heading = notification.userInfo?[RouteController.NotificationUserInfoKey.headingKey] as? CLHeading
let cameraOptions = self.cameraOptions(passiveLocation: passiveLocation,
activeLocation: activeLocation,
routeProgress: routeProgress)
delegate?.viewportDataSource(self, didUpdate: cameraOptions)
NotificationCenter.default.post(name: .navigationCameraViewportDidChange, object: self, userInfo: [
NavigationCamera.NotificationUserInfoKey.cameraOptions: cameraOptions
])
print("!!! device orientation: \(UIDevice.current.orientation)")
}
// MARK: CameraOptions Methods
func cameraOptions(_ rawLocation: CLLocation? = nil,
passiveLocation: CLLocation? = nil,
activeLocation: CLLocation? = nil,
routeProgress: RouteProgress? = nil) -> [String: CameraOptions] {
updateFollowingCamera(rawLocation,
passiveLocation: passiveLocation,
activeLocation: activeLocation,
routeProgress: routeProgress)
// In active guidance navigation, camera in overview mode is relevant, during free-drive
// navigation it's not used.
updateOverviewCamera(activeLocation,
routeProgress: routeProgress)
let cameraOptions = [
CameraOptions.followingMobileCamera: followingMobileCamera,
CameraOptions.overviewMobileCamera: overviewMobileCamera,
CameraOptions.followingCarPlayCamera: followingCarPlayCamera,
CameraOptions.overviewCarPlayCamera: overviewCarPlayCamera
]
return cameraOptions
}
func updateFollowingCamera(_ rawLocation: CLLocation? = nil,
passiveLocation: CLLocation? = nil,
activeLocation: CLLocation? = nil,
routeProgress: RouteProgress? = nil) {
guard let mapView = mapView else { return }
let followingCameraOptions = options.followingCameraOptions
if let location = rawLocation ?? passiveLocation {
if followingCameraOptions.centerUpdatesAllowed || followingMobileCamera.center == nil {
followingMobileCamera.center = location.coordinate
followingCarPlayCamera.center = location.coordinate
}
if followingCameraOptions.zoomUpdatesAllowed || followingMobileCamera.zoom == nil {
let altitude = 4000.0
let zoom = CGFloat(ZoomLevelForAltitude(altitude,
mapView.cameraState.pitch,
location.coordinate.latitude,
mapView.bounds.size))
followingMobileCamera.zoom = zoom
followingCarPlayCamera.zoom = zoom
}
if followingCameraOptions.bearingUpdatesAllowed || followingMobileCamera.bearing == nil {
if followingCameraOptions.followsLocationCourse {
followingMobileCamera.bearing = location.course
followingCarPlayCamera.bearing = location.course
} else {
followingMobileCamera.bearing = 0.0
followingCarPlayCamera.bearing = 0.0
}
}
followingMobileCamera.anchor = mapView.center
followingCarPlayCamera.anchor = mapView.center
if followingCameraOptions.pitchUpdatesAllowed || followingMobileCamera.pitch == nil {
followingMobileCamera.pitch = 0.0
followingCarPlayCamera.pitch = 0.0
}
if followingCameraOptions.paddingUpdatesAllowed || followingMobileCamera.padding == nil {
followingMobileCamera.padding = mapView.safeAreaInsets
followingCarPlayCamera.padding = mapView.safeAreaInsets
}
return
}
if let location = activeLocation, let routeProgress = routeProgress {
var compoundManeuvers: [[CLLocationCoordinate2D]] = []
let geometryFramingAfterManeuver = followingCameraOptions.geometryFramingAfterManeuver
let pitchСoefficient = self.pitchСoefficient(routeProgress, currentCoordinate: location.coordinate)
let pitch = followingCameraOptions.defaultPitch * pitchСoefficient
var carPlayCameraPadding = mapView.safeArea + UIEdgeInsets.centerEdgeInsets
// Bottom of the viewport on CarPlay should be placed at the same level with
// trip estimate view.
carPlayCameraPadding.bottom += 65.0
if geometryFramingAfterManeuver.enabled {
let stepIndex = routeProgress.currentLegProgress.stepIndex
let nextStepIndex = min(stepIndex + 1, routeProgress.currentLeg.steps.count - 1)
var totalDistance: CLLocationDistance = 0.0
for (index, step) in routeProgress.currentLeg.steps.suffix(from: nextStepIndex).enumerated() {
guard let stepCoordinates = step.shape?.coordinates,
let distance = stepCoordinates.distance() else { continue }
if index == 0 {
if distance >= geometryFramingAfterManeuver.distanceToFrameAfterManeuver {
let trimmedStepCoordinates = stepCoordinates.trimmed(distance: geometryFramingAfterManeuver.distanceToFrameAfterManeuver)
compoundManeuvers.append(trimmedStepCoordinates)
break
} else {
compoundManeuvers.append(stepCoordinates)
totalDistance += distance
}
} else if distance >= 0.0 && totalDistance < geometryFramingAfterManeuver.distanceToCoalesceCompoundManeuvers {
if distance + totalDistance >= geometryFramingAfterManeuver.distanceToCoalesceCompoundManeuvers {
let remanentDistance = geometryFramingAfterManeuver.distanceToCoalesceCompoundManeuvers - totalDistance
let trimmedStepCoordinates = stepCoordinates.trimmed(distance: remanentDistance)
compoundManeuvers.append(trimmedStepCoordinates)
break
} else {
compoundManeuvers.append(stepCoordinates)
totalDistance += distance
}
}
}
}
let coordinatesForManeuverFraming = compoundManeuvers.reduce([], +)
let coordinatesToManeuver = routeProgress.currentLegProgress.currentStep.shape?.coordinates.sliced(from: location.coordinate) ?? []
if options.followingCameraOptions.centerUpdatesAllowed || followingMobileCamera.center == nil {
var center = location.coordinate
if let boundingBox = BoundingBox(from: coordinatesToManeuver + coordinatesForManeuverFraming) {
let coordinates = [
center,
[boundingBox.northEast, boundingBox.southWest].centerCoordinate
]
let centerLineString = LineString(coordinates)
let centerLineStringTotalDistance = centerLineString.distance() ?? 0.0
let centerCoordDistance = centerLineStringTotalDistance * (1 - pitchСoefficient)
if let adjustedCenter = centerLineString.coordinateFromStart(distance: centerCoordDistance) {
center = adjustedCenter
}
}
followingMobileCamera.center = center
followingCarPlayCamera.center = center
}
let lookaheadDistance = self.lookaheadDistance(routeProgress)
if options.followingCameraOptions.zoomUpdatesAllowed || followingMobileCamera.zoom == nil {
let defaultZoomLevel = 12.0
let coordinatesForIntersections = coordinatesToManeuver.sliced(from: nil,
to: LineString(coordinatesToManeuver).coordinateFromStart(distance: lookaheadDistance))
let followingMobileCameraZoom = zoom(coordinatesForIntersections,
pitch: pitch,
maxPitch: followingCameraOptions.defaultPitch,
edgeInsets: viewportPadding,
defaultZoomLevel: defaultZoomLevel,
maxZoomLevel: followingCameraOptions.zoomRange.upperBound,
minZoomLevel: followingCameraOptions.zoomRange.lowerBound)
followingMobileCamera.zoom = followingMobileCameraZoom
let followingCarPlayCameraZoom = zoom(coordinatesForIntersections,
pitch: pitch,
maxPitch: followingCameraOptions.defaultPitch,
edgeInsets: carPlayCameraPadding,
defaultZoomLevel: defaultZoomLevel,
maxZoomLevel: followingCameraOptions.zoomRange.upperBound,
minZoomLevel: followingCameraOptions.zoomRange.lowerBound)
followingCarPlayCamera.zoom = followingCarPlayCameraZoom
}
if options.followingCameraOptions.bearingUpdatesAllowed || followingMobileCamera.bearing == nil {
var bearing = location.course
let lookaheadDistance = self.lookaheadDistance(routeProgress)
let distance = fmax(lookaheadDistance, geometryFramingAfterManeuver.enabled
? geometryFramingAfterManeuver.distanceToCoalesceCompoundManeuvers
: 0.0)
let coordinatesForIntersections = coordinatesToManeuver.sliced(from: nil,
to: LineString(coordinatesToManeuver).coordinateFromStart(distance: distance))
bearing = self.bearing(location.course, coordinatesToManeuver: coordinatesForIntersections)
var headingDirection: CLLocationDirection?
let isWalking = routeProgress.currentLegProgress.currentStep.transportType == .walking
if isWalking {
if let trueHeading = heading?.trueHeading, trueHeading >= 0 {
headingDirection = trueHeading
} else if let magneticHeading = heading?.magneticHeading, magneticHeading >= 0 {
headingDirection = magneticHeading
} else {
headingDirection = bearing
}
}
followingMobileCamera.bearing = !isWalking ? bearing : headingDirection
followingCarPlayCamera.bearing = bearing
}
let followingMobileCameraAnchor = anchor(pitchСoefficient,
bounds: mapView.bounds,
edgeInsets: viewportPadding)
followingMobileCamera.anchor = followingMobileCameraAnchor
let followingCarPlayCameraAnchor = anchor(pitchСoefficient,
bounds: mapView.bounds,
edgeInsets: carPlayCameraPadding)
followingCarPlayCamera.anchor = followingCarPlayCameraAnchor
if options.followingCameraOptions.pitchUpdatesAllowed || followingMobileCamera.pitch == nil {
followingMobileCamera.pitch = CGFloat(pitch)
followingCarPlayCamera.pitch = CGFloat(pitch)
}
if options.followingCameraOptions.paddingUpdatesAllowed || followingMobileCamera.padding == nil {
followingMobileCamera.padding = UIEdgeInsets(top: followingMobileCameraAnchor.y,
left: viewportPadding.left,
bottom: UIScreen.main.bounds.height - followingMobileCameraAnchor.y + 1.0,
right: viewportPadding.right)
if let mainCarPlayScreen = UIScreen.mainCarPlay {
followingCarPlayCamera.padding = UIEdgeInsets(top: followingCarPlayCameraAnchor.y,
left: carPlayCameraPadding.left,
bottom: mainCarPlayScreen.bounds.height - followingCarPlayCameraAnchor.y + 1.0,
right: carPlayCameraPadding.right)
} else {
followingCarPlayCamera.padding = carPlayCameraPadding
}
}
}
}
func updateOverviewCamera(_ activeLocation: CLLocation?, routeProgress: RouteProgress?) {
guard let mapView = mapView,
let coordinate = activeLocation?.coordinate,
let routeProgress = routeProgress else { return }
let stepIndex = routeProgress.currentLegProgress.stepIndex
let nextStepIndex = min(stepIndex + 1, routeProgress.currentLeg.steps.count - 1)
let coordinatesAfterCurrentStep = routeProgress.currentLeg.steps[nextStepIndex...]
.map({ $0.shape?.coordinates })
let untraveledCoordinatesOnCurrentStep = routeProgress.currentLegProgress.currentStep.shape?.coordinates.sliced(from: coordinate) ?? []
let remainingCoordinatesOnRoute = coordinatesAfterCurrentStep.flatten() + untraveledCoordinatesOnCurrentStep
let carPlayCameraPadding = mapView.safeArea + UIEdgeInsets.centerEdgeInsets
let overviewCameraOptions = options.overviewCameraOptions
if overviewCameraOptions.pitchUpdatesAllowed || overviewMobileCamera.pitch == nil {
overviewMobileCamera.pitch = 0.0
overviewCarPlayCamera.pitch = 0.0
}
if overviewCameraOptions.centerUpdatesAllowed || overviewMobileCamera.center == nil {
if let boundingBox = BoundingBox(from: remainingCoordinatesOnRoute) {
let center = [
boundingBox.southWest,
boundingBox.northEast
].centerCoordinate
overviewMobileCamera.center = center
overviewCarPlayCamera.center = center
}
}
if overviewCameraOptions.zoomUpdatesAllowed || overviewMobileCamera.zoom == nil {
overviewMobileCamera.zoom = zoom(remainingCoordinatesOnRoute,
edgeInsets: viewportPadding,
maxZoomLevel: overviewCameraOptions.maximumZoomLevel)
overviewCarPlayCamera.zoom = zoom(remainingCoordinatesOnRoute,
edgeInsets: carPlayCameraPadding,
maxZoomLevel: overviewCameraOptions.maximumZoomLevel)
}
overviewMobileCamera.anchor = anchor(bounds: mapView.bounds,
edgeInsets: viewportPadding)
overviewCarPlayCamera.anchor = anchor(bounds: mapView.bounds,
edgeInsets: carPlayCameraPadding)
if overviewCameraOptions.bearingUpdatesAllowed || overviewMobileCamera.bearing == nil {
// In case if `NavigationCamera` is already in `NavigationCameraState.overview` value
// of bearing will be also ignored.
let bearing = 0.0
var headingDirection: CLLocationDirection?
let isWalking = routeProgress.currentLegProgress.currentStep.transportType == .walking
if isWalking {
if let trueHeading = heading?.trueHeading, trueHeading >= 0 {
headingDirection = trueHeading
} else if let magneticHeading = heading?.magneticHeading, magneticHeading >= 0 {
headingDirection = magneticHeading
} else {
headingDirection = bearing
}
}
overviewMobileCamera.bearing = !isWalking ? bearing : headingDirection
overviewCarPlayCamera.bearing = bearing
}
if overviewCameraOptions.paddingUpdatesAllowed || overviewMobileCamera.padding == nil {
overviewMobileCamera.padding = viewportPadding
overviewCarPlayCamera.padding = carPlayCameraPadding
}
}
func bearing(_ initialBearing: CLLocationDirection,
coordinatesToManeuver: [CLLocationCoordinate2D]? = nil) -> CLLocationDirection {
var bearing = initialBearing
if let coordinates = coordinatesToManeuver,
let firstCoordinate = coordinates.first,
let lastCoordinate = coordinates.last {
let directionToManeuver = firstCoordinate.direction(to: lastCoordinate)
let directionDiff = directionToManeuver.shortestRotation(angle: initialBearing)
let bearingSmoothing = options.followingCameraOptions.bearingSmoothing
let bearingMaxDiff = bearingSmoothing.enabled ? bearingSmoothing.maximumBearingSmoothingAngle : 0.0
if fabs(directionDiff) > bearingMaxDiff {
bearing += bearingMaxDiff * (directionDiff < 0.0 ? -1.0 : 1.0)
} else {
bearing = firstCoordinate.direction(to: lastCoordinate)
}
}
let mapViewBearing = Double(mapView?.cameraState.bearing ?? 0.0)
return mapViewBearing + bearing.shortestRotation(angle: mapViewBearing)
}
func zoom(_ coordinates: [CLLocationCoordinate2D],
pitch: Double = 0.0,
maxPitch: Double = 0.0,
edgeInsets: UIEdgeInsets = .zero,
defaultZoomLevel: Double = 12.0,
maxZoomLevel: Double = 22.0,
minZoomLevel: Double = 2.0) -> CGFloat {
guard let mapView = mapView,
let boundingBox = BoundingBox(from: coordinates) else { return CGFloat(defaultZoomLevel) }
let mapViewInsetWidth = mapView.bounds.size.width - edgeInsets.left - edgeInsets.right
let mapViewInsetHeight = mapView.bounds.size.height - edgeInsets.top - edgeInsets.bottom
let widthDelta = mapViewInsetHeight * 2 - mapViewInsetWidth
let pitchDelta = CGFloat(pitch / maxPitch) * widthDelta
let widthWithPitchEffect = CGFloat(mapViewInsetWidth + CGFloat(pitchDelta.isNaN ? 0.0 : pitchDelta))
let heightWithPitchEffect = CGFloat(mapViewInsetHeight + mapViewInsetHeight * CGFloat(sin(pitch * .pi / 180.0)) * 1.25)
let zoomLevel = boundingBox.zoomLevel(fitTo: CGSize(width: widthWithPitchEffect, height: heightWithPitchEffect))
return CGFloat(max(min(zoomLevel, maxZoomLevel), minZoomLevel))
}
func anchor(_ pitchСoefficient: Double = 0.0,
bounds: CGRect = .zero,
edgeInsets: UIEdgeInsets = .zero) -> CGPoint {
let xCenter = max(((bounds.size.width - edgeInsets.left - edgeInsets.right) / 2.0) + edgeInsets.left, 0.0)
let height = (bounds.size.height - edgeInsets.top - edgeInsets.bottom)
let yCenter = max((height / 2.0) + edgeInsets.top, 0.0)
let yOffsetCenter = max((height / 2.0) - 7.0, 0.0) * CGFloat(pitchСoefficient) + yCenter
return CGPoint(x: xCenter, y: yOffsetCenter)
}
func pitchСoefficient(_ routeProgress: RouteProgress,
currentCoordinate: CLLocationCoordinate2D) -> Double {
let defaultPitchСoefficient = 1.0
let pitchNearManeuver = options.followingCameraOptions.pitchNearManeuver
if pitchNearManeuver.enabled {
var shouldIgnoreManeuver = false
if let upcomingStep = routeProgress.currentLeg.steps[safe: routeProgress.currentLegProgress.stepIndex + 1] {
if routeProgress.currentLegProgress.stepIndex == routeProgress.currentLegProgress.leg.steps.count - 2 {
shouldIgnoreManeuver = true
}
let maneuvers: [ManeuverType] = [.continue, .merge, .takeOnRamp, .takeOffRamp, .reachFork]
if maneuvers.contains(upcomingStep.maneuverType) {
shouldIgnoreManeuver = true
}
}
let coordinatesToManeuver = routeProgress.currentLegProgress.currentStep.shape?.coordinates.sliced(from: currentCoordinate) ?? []
if let distanceToManeuver = LineString(coordinatesToManeuver).distance(),
distanceToManeuver <= pitchNearManeuver.triggerDistanceToManeuver,
!shouldIgnoreManeuver {
return min(distanceToManeuver, pitchNearManeuver.triggerDistanceToManeuver) / pitchNearManeuver.triggerDistanceToManeuver
}
}
return defaultPitchСoefficient
}
/**
Calculates lookahead distance based on current `RouteProgress` and `IntersectionDensity` coefficients.
Lookahead distance value will be influenced by both `IntersectionDensity.minimumDistanceBetweenIntersections` and
`IntersectionDensity.averageDistanceMultiplier`.
- parameter routeProgress: Current `RouteProgress`.
- returns: Lookahead distance.
*/
func lookaheadDistance(_ routeProgress: RouteProgress) -> CLLocationDistance {
let intersectionDensity = options.followingCameraOptions.intersectionDensity
let averageIntersectionDistances = routeProgress.route.legs.map { (leg) -> [CLLocationDistance] in
return leg.steps.map { (step) -> CLLocationDistance in
if let firstStepCoordinate = step.shape?.coordinates.first,
let lastStepCoordinate = step.shape?.coordinates.last {
let intersectionLocations = [firstStepCoordinate] + (step.intersections?.map({ $0.location }) ?? []) + [lastStepCoordinate]
let intersectionDistances = intersectionLocations[1...].enumerated().map({ (index, intersection) -> CLLocationDistance in
return intersection.distance(to: intersectionLocations[index])
})
let filteredIntersectionDistances = intersectionDensity.enabled
? intersectionDistances.filter { $0 > intersectionDensity.minimumDistanceBetweenIntersections }
: intersectionDistances
let averageIntersectionDistance = filteredIntersectionDistances.reduce(0.0, +) / Double(filteredIntersectionDistances.count)
return averageIntersectionDistance
}
return 0.0
}
}
let averageDistanceMultiplier = intersectionDensity.enabled ? intersectionDensity.averageDistanceMultiplier : 1.0
let currentRouteLegIndex = routeProgress.legIndex
let currentRouteStepIndex = routeProgress.currentLegProgress.stepIndex
let lookaheadDistance = averageIntersectionDistances[currentRouteLegIndex][currentRouteStepIndex] * averageDistanceMultiplier
return lookaheadDistance
}
}
// MARK: LocationConsumer Delegate
extension NavigationViewportDataSource: LocationConsumer {
public var shouldTrackLocation: Bool {
get {
return true
}
set(newValue) {
// No-op
}
}
public func locationUpdate(newLocation: Location) {
let location = CLLocation(latitude: newLocation.coordinate.latitude,
longitude: newLocation.coordinate.longitude)
let cameraOptions = self.cameraOptions(location)
delegate?.viewportDataSource(self, didUpdate: cameraOptions)
}
}