PlaceType

public enum PlaceType : UInt32, CaseIterable, Codable

Specifies place type of Place result from a search query.

  • poi

    Point of interest, for example a shop, restaurant, museum.

    Declaration

    Swift

    case poi
  • Address of a place. It can have different formats based on the addressing system.

    Declaration

    Swift

    case address
  • Geographical area, for example a country, a city or a district.

    Declaration

    Swift

    case area
  • A street.

    Declaration

    Swift

    case street
  • An intersection of two, or more, streets. Note: This type is not supported in offline search.

    Declaration

    Swift

    case intersection
  • Unknown or missing place type.

    Declaration

    Swift

    case unknown