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
角形の右上隅。