function geolocation_html5_field_formatter_info in Geolocation Field 7
Implements hook_field_formatter_info().
File
- modules/
geolocation_html5/ geolocation_html5.module, line 10 - HTML5 widget and formaters for Geolocation.
Code
function geolocation_html5_field_formatter_info() {
return array(
'geolocation_html5_mapimage' => array(
'label' => t('HTML5 Map image'),
'field types' => array(
'geolocation_latlng',
),
),
);
}