ObjCMongoDB でこのクエリを実装しようとしています。
db.<collection>.find( { loc :
{ $near :
{ $geometry :
{ type : "Point" ,
coordinates : [ -121.9 , 37.5 ] } ,
$maxDistance : 10000
} } } )
ただし、クエリを受信していません (受信する必要がある場合)。私が間違っているのかわかりません。これが私の試みです:
MongoKeyedPredicate *predicate = [MongoKeyedPredicate predicate];
NSValue *value = [NSValue valueWithCGPoint:CGPointMake(-121.9, 37.5)];
CGPoint point = [value CGPointValue];
CGFloat maxDistance = 10000;
[predicate keyPath:@"loc" isNearPoint:point maxDistance:maxDistance];
NSArray *results = [collection findWithPredicate:predicate error:&error];
for (BSONDocument *resultDoc in results) {
NSDictionary *result = [BSONDecoder decodeDictionaryWithDocument:resultDoc];
NSLog(@"fetch result: %@", result);
}