ImageRepresentation
struct ImageRepresentation : Equatable
An image representation of a visual instruction component.
-
File formats of visual instruction component images.
See moreDeclaration
Swift
public enum Format : String
-
Initializes an image representation bearing the image at the given base URL.
Declaration
Swift
public init(imageBaseURL: URL?, shield: ShieldRepresentation? = nil)
-
The URL whose path is the prefix of all the possible URLs returned by
imageURL(scale:format:)
.Declaration
Swift
public let imageBaseURL: URL?
-
Optionally, a structured image representation for displaying a highway shield.
Declaration
Swift
public let shield: ShieldRepresentation?
-
Returns a remote URL to the image file that represents the component.
Parameters
scale
The image’s scale factor. If this argument is unspecified, the current screen’s native scale factor is used. Only the values 1, 2, and 3 are currently supported.
format
The file format of the image. If this argument is unspecified, PNG is used.
Return Value
A remote URL to the image.