geo_field_formatter_info

geo/geo.module, line 82

Versions
6
geo_field_formatter_info()

Implementation of hook_field_formatter_info().

Code

<?php
function geo_field_formatter_info() {
  // TODO some other formatters: asKML, asGML, asGeoRSS, etc
  return array(
    'default' => array(
      'label' => t('Well Known Text'),
      'field types' => geo_field_types(),
    ),
    'lat' => array(
      'label' => t('Latitude'),
      'field types' => geo_field_types(),
    ),
    'lon' => array(
      'label' => t('Longitude'),
      'field types' => geo_field_types(),
    ),
    'georss' => array(
      'label' => t('GeoRSS'),
      'field types' => geo_field_types(),
    ),
  );
}
?>