You are here

public function MapProviderOpenStreetMap::fieldFormatterSettingsSummary in Static Map 7

Summary formatter settings.

@inhetirdoc

Overrides MapProviderBase::fieldFormatterSettingsSummary

File

includes/MapProviderOpenStreetMap.php, line 72
OpenStreetMap provider.

Class

MapProviderOpenStreetMap
Class MapProviderOpenStreetMap

Code

public function fieldFormatterSettingsSummary($field, $instance, $view_mode, $preset_data) {
  $maptypes = $this
    ->mapTypes();
  return t('Map Style: @maptype', array(
    '@maptype' => !empty($maptypes[$preset_data['maptype']]) ? $maptypes[$preset_data['maptype']] : '',
  ));
}