use of org.springframework.data.mongodb.core.Venue in project spring-data-mongodb by spring-projects.
the class GeoSpatial2DSphereTests method nearSphereWithMinDistance.
// DATAMONGO-1110
@Test
public void nearSphereWithMinDistance() {
Point point = new Point(-73.99171, 40.738868);
List<Venue> venues = template.find(query(where("location").nearSphere(point).minDistance(0.01)), Venue.class);
assertThat(venues.size(), is(1));
}
Aggregations