TileRegionError

public enum TileRegionError : LocalizedError, Equatable

Describes the reason for a tile region download request failure.

  • The operation was canceled.

    Declaration

    Swift

    case canceled(String)
  • The tile region does not exist.

    Declaration

    Swift

    case doesNotExist(String)
  • Resolving the tileset descriptors failed.

    Declaration

    Swift

    case tilesetDescriptor(String)
  • There is no available space to store the resources.

    Declaration

    Swift

    case diskFull(String)
  • Some other failure reason.

    Declaration

    Swift

    case other(String)
  • The region contains more tiles than allowed

    Declaration

    Swift

    case tileCountExceeded(String)
  • Declaration

    Swift

    public var errorDescription: String? { get }