geolocation-8.x-3.x-dev/modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/GoogleControlElementBase.php
modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/GoogleControlElementBase.php
<?php
namespace Drupal\geolocation_google_maps\Plugin\geolocation\MapFeature;
use Drupal\geolocation\Plugin\geolocation\MapFeature\ControlElementBase;
/**
* Class ControlMapFeatureBase.
*/
abstract class GoogleControlElementBase extends ControlElementBase {
/**
* {@inheritdoc}
*/
public static function getDefaultSettings(): array {
$settings = parent::getDefaultSettings();
$settings['position'] = 'RIGHT_CENTER';
$settings['behavior'] = 'default';
return $settings;
}
}
