geo-distance-query.asciidoc 471 B

123456789101112131415
  1. [[java-query-dsl-geo-distance-query]]
  2. ==== Geo Distance Query
  3. See {ref}/query-dsl-geo-distance-query.html[Geo Distance Query]
  4. [source,java]
  5. --------------------------------------------------
  6. QueryBuilder qb = geoDistanceQuery("pin.location") <1>
  7. .point(40, -70) <2>
  8. .distance(200, DistanceUnit.KILOMETERS); <3>
  9. --------------------------------------------------
  10. <1> field
  11. <2> center point
  12. <3> distance from center point