GMSPlaceLandmarkSpatialRelationship
enum GMSPlaceLandmarkSpatialRelationship : NSInteger {}Defines the spatial relationship between the target location and the landmark.
-
The landmark is near the target. This is the default relationship when nothing more specific below applies.
Declaration
Swift
case near = 0Objective-C
GMSPlaceLandmarkSpatialRelationshipNear = 0 -
The target is within the landmark.
Declaration
Swift
case within = 1Objective-C
GMSPlaceLandmarkSpatialRelationshipWithin -
The landmark is beside the target.
Declaration
Swift
case beside = 2Objective-C
GMSPlaceLandmarkSpatialRelationshipBeside -
The landmark is across the road from the target.
Declaration
Swift
case acrossTheRoad = 3Objective-C
GMSPlaceLandmarkSpatialRelationshipAcrossTheRoad -
The landmark is down the road from the target.
Declaration
Swift
case downTheRoad = 4Objective-C
GMSPlaceLandmarkSpatialRelationshipDownTheRoad -
The landmark is around the corner from the target.
Declaration
Swift
case aroundTheCorner = 5Objective-C
GMSPlaceLandmarkSpatialRelationshipAroundTheCorner -
The landmark is behind the target.
Declaration
Swift
case behind = 6Objective-C
GMSPlaceLandmarkSpatialRelationshipBehind