TNEntityLocationType

@objc
public enum TNEntityLocationType : Int, Codable, RawRepresentable

Undocumented

  • Location matches exactly as address point.

    Declaration

    Swift

    case addressPoint
  • Location is interpolated by door range.

    Declaration

    Swift

    case approximate
  • Indicates that the location is the geometric center of a result such as a polyline (for example, a street) or polygon (city)

    Declaration

    Swift

    case geometricCenter
  • Indicates that the returned address is approximate, this typically happens when returned address is interpolated but out of door range.

    Declaration

    Swift

    case interpolated
  • Undocumented

    Declaration

    Swift

    case none
  • Declaration

    Swift

    public var rawValue: RawValue { get }
  • Declaration

    Swift

    public typealias RawValue = String
  • Declaration

    Swift

    public init?(rawValue: RawValue)