public function YandexBalloon::getSettingsForm in Geolocation Field 8.2
Same name and namespace in other branches
- 8.3 modules/geolocation_yandex/src/Plugin/geolocation/MapFeature/YandexBalloon.php \Drupal\geolocation_yandex\Plugin\geolocation\MapFeature\YandexBalloon::getSettingsForm()
Provide a generic map settings form array.
Parameters
array $settings: The current map settings.
array $parents: Form specific optional prefix.
Return value
array A form array to be integrated in whatever.
Overrides MapFeatureBase::getSettingsForm
File
- modules/
geolocation_yandex/ src/ Plugin/ geolocation/ MapFeature/ YandexBalloon.php, line 35
Class
- YandexBalloon
- Provides marker balloon.
Namespace
Drupal\geolocation_yandex\Plugin\geolocation\MapFeatureCode
public function getSettingsForm(array $settings, array $parents) {
$settings = $this
->getSettings($settings);
$form['info_auto_display'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Automatically show info text.'),
'#default_value' => $settings['info_auto_display'],
];
$form['disable_auto_pan'] = [
'#type' => 'checkbox',
'#title' => $this
->t('Disable automatic panning of map when info bubble is opened.'),
'#default_value' => $settings['disable_auto_pan'],
];
$form['max_width'] = [
'#type' => 'number',
'#min' => 0,
'#title' => $this
->t('Max width in pixel. 0 to ignore.'),
'#default_value' => $settings['max_width'],
];
$form['panel_max_map_area'] = [
'#type' => 'textfield',
'#title' => $this
->t('Balloon panel mode.'),
'#description' => $this
->t('The maximum area of the map at which the balloon will be displayed in the panel mode. You can disable panel mode by setting the value to <em>0</em>, and vice versa, you can always show the balloon in panel mode by setting the value to <em>Infinity</em>.'),
'#default_value' => $settings['panel_max_map_area'],
];
return $form;
}