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

ademarco’s picture

You can implement hook_build_proximity_index($node) which is called when the module builds the search index. You can have a look to openlayers_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?

ckreutz’s picture

Thanks for your reply and first hint. I am not yet so experienced with the backend of Drupal. I will have a look at it.

tom_o_t’s picture

Component: Code » Documentation

It would be great to add the hook_build_proximity_index($node) to the documentation/README.txt, or to a DEVELOPERS.txt

travismiller’s picture

I posted a simple implementation of this for geo_field here: #922238: Openlayers Proximity Views Filter compatibility