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=48&rev2=49 -------------------------------------------------- == 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 City, State or distance: - . [[http://localhost:8983/solr/select?wt=json&indent=true&fl=name,store&q=*:*&(state:"fl" AND city:"Jacksonville") OR _query_:"{!geofilt}"&sfield=store&pt=45.15,-93.85&d=50&sort=geodist()%20asc|...&q=*:*&(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?fl=name,store,city,state&q=*:*&fq=(state:"fl" AND city:"Jacksonville") OR _query_:"{!geofilt}"&sfield=store&pt=45.15,-93.85&d=50&sort=geodist()%20asc|...&q=*:*&fq=(state:"fl" AND city:"Jacksonville") OR _query_:"{!geofilt}"&sfield=store&pt=45.15,-93.85&d=50&sort=geodist() asc]] = Advanced Spatial Options - Under Development =