MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

So ermitteln Sie die Entfernung – MongoDB Template Near-Funktion

Sie können dies mit der geoNear-Aggregation tun . In spring-data-mongodb GeoNearOperation repräsentiert diese Aggregation.

Erweitern oder erben Sie Place Klasse mit Feld, in dem Sie Entfernungsinformationen haben möchten (Beispiel mit Vererbung):

public class PlaceWithDistance extends Place {
    private double distance;

    public double getDistance() {
        return distance;
    }

    public void setDistance(final double distance) {
        this.distance = distance;
    }
}

Statt Criteria mit Query Aggregation verwenden. Zweites Argument von geoNear ist der Name des Feldes, in dem der Abstand eingestellt werden soll:

final NearQuery nearQuery = NearQuery
    .near(new Point(searchRequest.getLat(), searchRequest.getLng()));
nearQuery.num(5);
nearQuery.spherical(true); // if using 2dsphere index, otherwise delete or set false

// "distance" argument is name of field for distance
final Aggregation a = newAggregation(geoNear(nearQuery, "distance"));

final AggregationResults<PlaceWithDistance> results = 
    mongoTemplate.aggregate(a, Place.class, PlaceWithDistance.class);

// results.forEach(System.out::println);
List<PlaceWithDistance> ls = results.getMappedResults();

Nur um es einfacher zu machen - zugehörige Importe:

import static org.springframework.data.mongodb.core.aggregation.Aggregation.geoNear;
import static org.springframework.data.mongodb.core.aggregation.Aggregation.newAggregation;

import org.springframework.data.mongodb.core.aggregation.Aggregation;
import org.springframework.data.mongodb.core.aggregation.AggregationResults;
import org.springframework.data.mongodb.core.aggregation.GeoNearOperation;
import org.springframework.data.mongodb.core.query.NearQuery;