PhysicalStructure

public enum PhysicalStructure : UInt32, CaseIterable, Codable

Physical structure of a road feature that causes an access restriction, such as a bridge or tunnel that may limit vehicle dimensions or weight.

Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.

  • No physical structure or the structure type is unknown.

    Declaration

    Swift

    case unknown
  • A bridge.

    Declaration

    Swift

    case bridge
  • A tunnel.

    Declaration

    Swift

    case tunnel
  • An arch bridge.

    Declaration

    Swift

    case archBridge
  • An arch tunnel.

    Declaration

    Swift

    case archTunnel
  • Any other physical structure not covered by the above values.

    Declaration

    Swift

    case other