Entrance
public struct Entrance: Codable, CustomStringConvertible
An entrance to a building complex.
-
Identifier
Declaration
Swift
public let id: Int -
An image showing the entrance.
Declaration
Swift
public let image: String? -
A short textual note regarding this entrance.
Declaration
Swift
public let note: String? -
Is the entrance wheelchair accessible?
Declaration
Swift
public let isAccessible: Bool? -
Does the entrance have steps?
Declaration
Swift
public let hasSteps: Bool? -
Does the entrance have a button to open it automatically?
Declaration
Swift
public let hasOpenButton: Bool? -
Is the entrance at ground level?
Declaration
Swift
public let isAtGroundLevel: Bool? -
Does the entrance have a small threshold?
Declaration
Swift
public let hasThresholdSmall: Bool? -
Does the entrance have a bell?
Declaration
Swift
public let hasBell: Bool? -
Does the entrance have a dedicated accessibility bell?
Declaration
Swift
public let hasAccessibilityBell: Bool? -
Does the entrance have big steps?
Declaration
Swift
public let hasStepsBig: Bool? -
Does the entrance have a ramp?
Declaration
Swift
public let hasRamp: Bool? -
The entrancen’s image (if any) as a direct URL.
Declaration
Swift
public var imageURL: URL? -
Location of the entrance.
Declaration
Swift
public var location: CLLocationCoordinate2D? -
Entrance number
Declaration
Swift
public var description: String
Entrance Struct Reference