You are here

function addressfield_staticmap_field_formatter_info in Address Field Static Map 7

Implements hook_field_formatter_info().

File

./addressfield_staticmap.module, line 435
Main file for the addressfield static map module.

Code

function addressfield_staticmap_field_formatter_info() {
  return array(
    'addressfield_staticmap' => array(
      'label' => t('Address Field Static Map'),
      'field types' => array(
        'addressfield',
        'location',
      ),
      'settings' => array(
        'zoom_level' => 14,
        'map_size' => '',
        'map_style' => 'roadmap',
        'scale' => 1,
        'advanced_settings_index' => 0,
        'scroll_lock' => FALSE,
        'info_window' => 0,
        'text_address' => 0,
        'additional' => '',
      ),
    ),
  );
}