function geocoder_mapzen_field in Geocoder 7
Plugin callback.
1 string reference to 'geocoder_mapzen_field'
- mapzen.inc in plugins/
geocoder_handler/ mapzen.inc
File
- plugins/
geocoder_handler/ mapzen.inc, line 44
Code
function geocoder_mapzen_field($field, $field_item) {
if ($field['type'] === 'text' || $field['type'] === 'text_long' || $field['type'] === 'text_with_summary' || $field['type'] === 'computed') {
return geocoder_mapzen($field_item['value']);
}
if ($field['type'] === 'addressfield') {
$address = geocoder_widget_parse_addressfield($field_item);
return geocoder_mapzen($address);
}
if ($field['type'] === 'location') {
$address = geocoder_widget_parse_locationfield($field_item);
return geocoder_mapzen($address);
}
if ($field['type'] === 'taxonomy_term_reference') {
$term = taxonomy_term_load($field_item['tid']);
return geocoder_mapzen($term->name);
}
}