You are here

function geofield_apachesolr_field_mappings in Geofield 7.2

Same name and namespace in other branches
  1. 7 geofield.module \geofield_apachesolr_field_mappings()

Implements hook_apachesolr_field_mappings().

File

./geofield.apachesolr.inc, line 6

Code

function geofield_apachesolr_field_mappings() {
  $mappings['geofield'] = array(
    'indexing_callback' => 'geofield_apachesolr_indexing_callback',
    'map callback' => 'geofield_apachesolr_map_callback',
    'index_type' => 'geohash',
    'facets' => TRUE,
    'query types' => array(
      'term',
      'geo',
    ),
    'query type' => 'term',
  );
  return $mappings;
}