RealisticViewVectorImage
public struct RealisticViewVectorImage : Hashable
A realistic view of a junction. The fields describing the realistic view are
RealisticViewVectorImage.junctionViewSvgImageContent contains a SVG image of the junction view
represented as a string.
RealisticViewVectorImage.signpostSvgImageContent contains an SVG image of the signpost corresponding
to the junction, also represented as a string.
A valid realistic view contains a non-empty RealisticViewVectorImage.junctionViewSvgImageContent and a
non-empty RealisticViewVectorImage.signpostSvgImageContent.
Use RealisticViewWarningListener to get notifications with the realistic views of the upcoming junctions.
-
The full content of the junction view vector image as a string.
Declaration
Swift
public var junctionViewSvgImageContent: String -
The full content of the signpost vector image as a string.
Declaration
Swift
public var signpostSvgImageContent: String -
Creates a new instance.
Declaration
Swift
public init(junctionViewSvgImageContent: String, signpostSvgImageContent: String)