You are here

function geolocation_googlemaps_field_widget_info in Geolocation Field 7

Implements hook_field_widget_info().

File

modules/geolocation_googlemaps/geolocation_googlemaps.module, line 331
Google Maps widget and formatters for Geolocation.

Code

function geolocation_googlemaps_field_widget_info() {
  return array(
    'geolocation_googlemap' => array(
      'label' => t('Google Map'),
      'field types' => array(
        'geolocation_latlng',
        'geofield',
      ),
    ),
  );
}