I have in my site nodes with CCK lat/long fields, geo taxonomy and WKT fields. It seem this module only builds an index with WKT field nodes. How can I get the geo taxonomy nodes referenced as well? Thanks in advance!
I have in my site nodes with CCK lat/long fields, geo taxonomy and WKT fields. It seem this module only builds an index with WKT field nodes. How can I get the geo taxonomy nodes referenced as well? Thanks in advance!
Comments
Comment #1
ademarco commentedYou can implement
hook_build_proximity_index($node)which is called when the module builds the search index. You can have a look toopenlayers_proximity_build_proximity_index($node)for a reference. Also, if you implement this hook for the geo taxonomy module, would you consider submitting a patch for that?Comment #2
ckreutz commentedThanks for your reply and first hint. I am not yet so experienced with the backend of Drupal. I will have a look at it.
Comment #3
tom_o_t commentedIt would be great to add the hook_build_proximity_index($node) to the documentation/README.txt, or to a DEVELOPERS.txt
Comment #4
travismiller commentedI posted a simple implementation of this for geo_field here: #922238: Openlayers Proximity Views Filter compatibility