GooglePlaces Framework Reference

  • GMSBooleanPlaceAttribute is an enum that describes the state of a place's boolean attribute.

  • It has three possible values: unknown, true, and false, indicating whether the attribute is unknown, true, or false, respectively.

  • This enum is used to represent boolean attributes of places in the Google Maps SDK for iOS.

GMSBooleanPlaceAttribute

enum GMSBooleanPlaceAttribute : NSInteger {}

Describes whether a place’s boolean attribute is available or not.

  • The place’s attribute has not been requested yet, or not known.

    Declaration

    Swift

    case unknown = 0

    Objective-C

    GMSBooleanPlaceAttributeUnknown
  • The place’s attribute is True.

    Declaration

    Swift

    case `true` = 1

    Objective-C

    GMSBooleanPlaceAttributeTrue
  • The place’s attribute is False.

    Declaration

    Swift

    case `false` = 2

    Objective-C

    GMSBooleanPlaceAttributeFalse