mirror of https://github.com/apache/lucene.git
Make spatial example more readable and fix bug where *:* did not show. Fixes #400
This commit is contained in:
parent
f76f7fc61f
commit
43fbf0321d
|
@ -109,7 +109,12 @@ When used with `BBoxField`, additional options are supported:
|
||||||
|
|
||||||
=== geofilt
|
=== geofilt
|
||||||
|
|
||||||
The `geofilt` filter allows you to retrieve results based on the geospatial distance (AKA the "great circle distance") from a given point. Another way of looking at it is that it creates a circular shape filter. For example, to find all documents within five kilometers of a given lat/lon point, you could enter `&q=*:*&fq={!geofilt sfield=store}&pt=45.15,-93.85&d=5`. This filter returns all results within a circle of the given radius around the initial point:
|
The `geofilt` filter allows you to retrieve results based on the geospatial distance (AKA the "great circle distance") from a given point. Another way of looking at it is that it creates a circular shape filter. For example, to find all documents within five kilometers of a given lat/lon point, you could enter:
|
||||||
|
|
||||||
|
[source,text]
|
||||||
|
&q=*:*&fq={!geofilt sfield=store}&pt=45.15,-93.85&d=5
|
||||||
|
|
||||||
|
This filter returns all results within a circle of the given radius around the initial point:
|
||||||
|
|
||||||
image::images/spatial-search/circle.png[5KM radius]
|
image::images/spatial-search/circle.png[5KM radius]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue