RLMGeospatialBox
Objective-C
@interface RLMGeospatialBox : NSObject <RLMGeospatial>
Swift
class RLMGeospatialBox : NSObject, RLMGeospatial, @unchecked Sendable
Uma classe que representa um retângulo, que pode ser utilizada em uma query geoespacial geoWithin
.
Aviso
Esta classe não pode ser persistente e só pode ser utilizada dentro de uma query geoespacialgeoWithin
.
-
O canto inferior esquerdo do retângulo.
Declaração
Objective-C
@property (strong, readonly) RLMGeospatialPoint *_Nonnull bottomLeft;
Swift
var bottomLeft: RLMGeospatialPoint { get }
-
O canto superior direito do retângulo.
Declaração
Objective-C
@property (strong, readonly) RLMGeospatialPoint *_Nonnull topRight;
Swift
var topRight: RLMGeospatialPoint { get }
-
Inicialize um
RLMGeospatialBox
, com valores para o canto inferior esquerdo e o canto superior direito.Declaração
Objective-C
- (nonnull instancetype) initWithBottomLeft:(nonnull RLMGeospatialPoint *)bottomLeft topRight:(nonnull RLMGeospatialPoint *)topRight;
Swift
init(bottomLeft: RLMGeospatialPoint, topRight: RLMGeospatialPoint)
Parâmetros
bottomLeft
O canto inferior esquerdo do retângulo.
topRight
O canto superior direito do retângulo.