GooglePlaces Framework Reference

GMSPlaceAreaContainment

enum GMSPlaceAreaContainment : NSInteger {}

Defines the spatial relationship between the target location and the area.

  • The containment relationship is unspecified.

    Declaration

    Swift

    case unspecified = 0

    Objective-C

    GMSPlaceAreaContainmentUnspecified = 0
  • The target location is within the area.

    Declaration

    Swift

    case within = 1

    Objective-C

    GMSPlaceAreaContainmentWithin
  • The target location is on the outskirts of the area.

    Declaration

    Swift

    case outskirts = 2

    Objective-C

    GMSPlaceAreaContainmentOutskirts
  • The target location is near the area.

    Declaration

    Swift

    case near = 3

    Objective-C

    GMSPlaceAreaContainmentNear