Page Summary
-
GMSBooleanPlaceAttributeis an enum that describes the state of a place's boolean attribute. -
It has three possible values:
unknown,true, andfalse, 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 = 0Objective-C
GMSBooleanPlaceAttributeUnknown -
The place’s attribute is True.
Declaration
Swift
case `true` = 1Objective-C
GMSBooleanPlaceAttributeTrue -
The place’s attribute is False.
Declaration
Swift
case `false` = 2Objective-C
GMSBooleanPlaceAttributeFalse