FollowCameraOperatorConfig

public struct FollowCameraOperatorConfig
extension FollowCameraOperatorConfig: Equatable

Storage configration for follow camera operator.

Important

This is a Public Preview API. It may be changed or removed at any time.

Lifecycle

Public

  • Road class definition.

    Declaration

    Swift

    public typealias RoadClass = String
  • Array of control points. The array must have at least one element and must be sorted in order of decreasing distance.

    Declaration

    Swift

    public typealias ControlPoints = [ControlPoint]
  • Dictionary of control points named after the corresponding road classes. This part of the configuration is only valid for the follow route camera operator. The follow route camera operator interpolates the tilt and scale according to the current camera position in relation to the next instruction, using the control points. Different control points can be defined for different road classes. The “default” road class is reserved for cases when there is no entry for a specific road class, or if the road class information is not available. If the entry for the “default” road class is missing, default internal values will be used in such cases. An example of a default internal value is a 0 tilt for both north-up follow camera operators.

    Declaration

    Swift

    public typealias ControlPointsMap = [RoadClass : ControlPoints]
  • Default FollowCameraOperatorConfig for CameraTrackingMode.followDirection tracking mode.

    Declaration

    Swift

    public static var DEFAULT_FOLLOW_DIRECTION_CAMERA_OPERATOR_CONFIG: FollowCameraOperatorConfig
  • Default FollowCameraOperatorConfig for CameraTrackingMode.followRoute tracking mode.

    Declaration

    Swift

    public static var DEFAULT_FOLLOW_ROUTE_CAMERA_OPERATOR_CONFIG: FollowCameraOperatorConfig
  • Default FollowCameraOperatorConfig for CameraTrackingMode.follow tracking mode.

    Declaration

    Swift

    public static var DEFAULT_FOLLOW_CAMERA_OPERATOR_CONFIG: FollowCameraOperatorConfig
  • Dictionary of control points named after the corresponding road classes.

    Declaration

    Swift

    public let controlPointsMap: ControlPointsMap
  • Optional minimum zoom allowed for this camera operator. The camera zoom is clamped according to the min zoom value upon activation of this camera operator. When defined, should be less than max-zoom.

    Declaration

    Swift

    public let minZoom: Double?
  • Optional maximum zoom allowed for this camera operator. The camera zoom is clamped according to the max zoom value upon activation of this camera operator. When defined, should be greater than min-zoom.

    Declaration

    Swift

    public let maxZoom: Double?
  • Optional default zoom allowed for this camera operator. The camera zoom is set to the default zoom upon activation of this camera operator. When defined, should be greater than min-zoom if min-scale is defined; smaller than max-zoom if max-zoom is defined.

    Declaration

    Swift

    public let defaultZoom: Double?
  • Optional default tilt allowed for this camera operator. The camera tilt is set to the default tilt upon activation of this camera operator.

    Declaration

    Swift

    public let defaultTilt: Double?
  • Optional default field of view.

    Declaration

    Swift

    public let defaultFov: Double?
  • Determines the maximum zoom that can be applied to keep a combined next instruction in the safe area. This only applies in cases where the next instruction is combined with the one after it. If the zoom needed to keep the combined next instruction inside the safe area is greater than this value, the camera operator skips the current scale change. Future zoom changes are not affected.

    The value must be a floating-point value greater than or equal to 0.0.

    Optional. Defaults to 0.0 (which disables the feature completely).

    Declaration

    Swift

    public let showCombinedInstructionMaxZoom: Double?
  • Determines the maximum amount that the zoom can change per meter. This is needed because at each geometry point, the algorithm checks whether the combined instruction arrow fits within the safe area. If not, the zoom is increased. Changing the zoom too quickly is distracting. So zoom adjustments are smoothed: the zoom is gradually changed before the increased level is actually needed, then gradually changed back afterwards. Scale smoothing means that there are points when the view is more zoomed out than the combined instruction arrow needs. If too much smoothing is used, the zoom may not have time to return to its optimal level between adjustments.

    The value must be a floating-point value greater than or equal to 1.0.

    Choosing a good value for this parameter usually requires some experimenting. It depends on the other camera operator parameters. For example, a good starting point for an experiment using a typical follow route camera operator in 3D mode would be a value of 5.

    Optional. If omitted, the smoothing of the scale changes will be turned off.

    Declaration

    Swift

    public let showCombinedInstructionMaxZoomChange: Double?

Equatable

  • Equatable implementation.

    Declaration

    Swift

    public static func == (lhs: FollowCameraOperatorConfig, rhs: FollowCameraOperatorConfig) -> Bool