The Solr quiz has a pretty good page on how the simplest search can be done with solr 1.5+.
To summarize, your schema defines the entered geohash fields:
<fieldtype name="geohash" class="solr.GeoHashField"/> <field name="destination" type="geohash" indexed="true" stored="true"/>
Data transmitters transmit coordinates with coordinates:
<field name="destination">cbj1pb56p4b</field>
You should probably go back to using the simple latitude and longitude coordinates to start with them. There are better documents for this.
source share