Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The "SpatialSearch" page has been changed by Bill Bell: http://wiki.apache.org/solr/SpatialSearch?action=diff&rev1=76&rev2=77 == How to combine with a sub-query to expand results == It is possible to filter by other criteria with an OR clause. Here is an example that says return by Jacksonville, FL or within 50 km from 45.15,-93.85: - . [[[[http://localhost:8983/solr/select?q=*:*&fq=(state:"FL" AND city:"Jacksonville") OR _query_:"{!geofilt}"&sfield=store&pt=45.15,-93.85&d=50&sort=geodist() asc|...&q=*:*&fq=(state:"FL" AND city:"Jacksonville") OR _query_:"{!geofilt}"&sfield=store&pt=45.15,-93.85&d=50&sort=geodist() asc]] + . [[http://localhost:8983/solr/select?q=*:*&fq=(state:"FL" AND city:"Jacksonville") OR _query_:"{!geofilt}"&sfield=store&pt=45.15,-93.85&d=50&sort=geodist() asc|...&q=*:*&fq=(state:"FL" AND city:"Jacksonville") OR _query_:"{!geofilt}"&sfield=store&pt=45.15,-93.85&d=50&sort=geodist() asc]] Note: you can't try this example with the example schema since the "state" and "city" fields haven't been defined.