RLMGeospatialBox
Objective-C
@interface RLMGeospatialBox : NSObject <RLMGeospatial>
Swift
class RLMGeospatialBox : NSObject, RLMGeospatial, @unchecked Sendable
지리 공간적 geoWithin
쿼리에 사용할 수 있는 사각형을 나타내는 클래스입니다.
경고
이 클래스는 지속될 수 없으며 지리 공간적geoWithin
쿼리 내에서만 사용할 수 있습니다.
-
사각형의 왼쪽 하단 모서리입니다.
선언
Objective-C
@property (strong, readonly) RLMGeospatialPoint *_Nonnull bottomLeft;
Swift
var bottomLeft: RLMGeospatialPoint { get }
-
사각형의 오른쪽 상단 모서리입니다.
선언
Objective-C
@property (strong, readonly) RLMGeospatialPoint *_Nonnull topRight;
Swift
var topRight: RLMGeospatialPoint { get }
-
왼쪽 하단 모서리와 오른쪽 상단 모서리에 대한 값을 사용하여
RLMGeospatialBox
을 초기화합니다.선언
Objective-C
- (nonnull instancetype) initWithBottomLeft:(nonnull RLMGeospatialPoint *)bottomLeft topRight:(nonnull RLMGeospatialPoint *)topRight;
Swift
init(bottomLeft: RLMGeospatialPoint, topRight: RLMGeospatialPoint)
매개변수
bottomLeft
사각형의 왼쪽 하단 모서리입니다.
topRight
사각형의 오른쪽 상단 모서리입니다.