geolocation-8.x-3.x-dev/modules/geolocation_google_maps/src/Plugin/geolocation/MapProvider/GoogleMaps.php
modules/geolocation_google_maps/src/Plugin/geolocation/MapProvider/GoogleMaps.php
<?php
namespace Drupal\geolocation_google_maps\Plugin\geolocation\MapProvider;
use Drupal\geolocation\Attribute\MapProvider;
use Drupal\Core\Render\BubbleableMetadata;
use Drupal\geolocation_google_maps\GoogleMapsProviderBase;
/**
* Provides Google Maps.
*/
#[MapProvider(
id: 'google_maps',
name: new \Drupal\Core\StringTranslation\TranslatableMarkup('Google Maps'),
description: new \Drupal\Core\StringTranslation\TranslatableMarkup('You do require an API key for this plugin to work.')
)]
class GoogleMaps extends GoogleMapsProviderBase {
/**
* Google map max zoom level.
*
* @var int
*/
public static int $maxZoomLevel = 20;
/**
* Google map min zoom level.
*
* @var int
*/
public static int $minZoomLevel = 0;
/**
* {@inheritdoc}
*/
public static function getDefaultSettings(): array {
return array_replace_recursive(
parent::getDefaultSettings(),
[
'minZoom' => static::$minZoomLevel,
'maxZoom' => static::$maxZoomLevel,
'gestureHandling' => 'auto',
'map_features' => [
'marker_infowindow' => [
'enabled' => TRUE,
],
'control_locate' => [
'enabled' => TRUE,
],
'control_zoom' => [
'enabled' => TRUE,
],
'control_maptype' => [
'enabled' => TRUE,
],
],
]
);
}
/**
* {@inheritdoc}
*/
public static function getControlPositions(): array {
return [
'LEFT_TOP' => t('Left top'),
'LEFT_CENTER' => t('Left center'),
'LEFT_BOTTOM' => t('Left bottom'),
'TOP_LEFT' => t('Top left'),
'TOP_CENTER' => t('Top center'),
'TOP_RIGHT' => t('Top right'),
'RIGHT_TOP' => t('Right top'),
'RIGHT_CENTER' => t('Right center'),
'RIGHT_BOTTOM' => t('Right bottom'),
'BOTTOM_LEFT' => t('Bottom left'),
'BOTTOM_CENTER' => t('Bottom center'),
'BOTTOM_RIGHT' => t('Bottom right'),
];
}
/**
* {@inheritdoc}
*/
public function getSettings(array $settings): array {
$settings = parent::getSettings($settings);
$settings['minZoom'] = (int) $settings['minZoom'];
$settings['maxZoom'] = (int) $settings['maxZoom'];
return $settings;
}
/**
* {@inheritdoc}
*/
public function getSettingsForm(array $settings, array $parents = [], array $context = []): array {
$settings = $this->getSettings($settings);
$parents_string = '';
if ($parents) {
$parents_string = implode('][', $parents) . '][';
}
$form = parent::getSettingsForm($settings, $parents, $context);
$form['zoom']['#min'] = static::$minZoomLevel;
$form['zoom']['#max'] = static::$maxZoomLevel;
$form['maxZoom'] = [
'#group' => $parents_string . 'general_settings',
'#type' => 'number',
'#min' => static::$minZoomLevel,
'#max' => static::$maxZoomLevel,
'#title' => $this->t('Max Zoom level'),
'#description' => $this->t('The maximum zoom level of the map. If omitted, or set to null, the default maximum zoom from the current map type is used instead.'),
'#default_value' => $settings['maxZoom'],
'#process' => [
['\Drupal\Core\Render\Element\RenderElementBase', 'processGroup'],
],
'#pre_render' => [
['\Drupal\Core\Render\Element\Number', 'preRenderNumber'],
['\Drupal\Core\Render\Element\RenderElementBase', 'preRenderGroup'],
],
];
$form['minZoom'] = [
'#group' => $parents_string . 'general_settings',
'#type' => 'number',
'#min' => static::$minZoomLevel,
'#max' => static::$maxZoomLevel,
'#title' => $this->t('Min Zoom level'),
'#description' => $this->t('The minimum zoom level of the map. If omitted, or set to null, the default minimum zoom from the current map type is used instead.'),
'#default_value' => $settings['minZoom'],
'#process' => [
['\Drupal\Core\Render\Element\RenderElementBase', 'processGroup'],
],
'#pre_render' => [
['\Drupal\Core\Render\Element\Number', 'preRenderNumber'],
['\Drupal\Core\Render\Element\RenderElementBase', 'preRenderGroup'],
],
];
$form['behavior_settings'] = [
'#type' => 'details',
'#title' => $this->t('Behavior'),
];
$form['gestureHandling'] = [
'#group' => $parents_string . 'behavior_settings',
'#type' => 'select',
'#title' => $this->t('Gesture Handling'),
'#default_value' => $settings['gestureHandling'],
'#description' => $this->t('Define how to handle interactions with map on mobile. Read the <a href=":introduction">introduction</a> for handling or the <a href=":details">details</a>, <i>available as of v3.27 / Nov. 2016</i>.', [
':introduction' => 'https://googlegeodevelopers.blogspot.de/2016/11/smart-scrolling-comes-to-mobile-web-maps.html',
':details' => 'https://developers.google.com/maps/documentation/javascript/3.exp/reference#MapOptions',
]),
'#options' => [
'auto' => $this->t('auto (default)'),
'cooperative' => $this->t('cooperative'),
'greedy' => $this->t('greedy'),
'none' => $this->t('none'),
],
'#process' => [
['\Drupal\Core\Render\Element\RenderElementBase', 'processGroup'],
['\Drupal\Core\Render\Element\Select', 'processSelect'],
],
'#pre_render' => [
['\Drupal\Core\Render\Element\RenderElementBase', 'preRenderGroup'],
],
];
return $form;
}
/**
* {@inheritdoc}
*/
public function alterRenderArray(array $render_array, array $map_settings = [], array $context = []): array {
$google_url = $this->googleMapsService->getGoogleMapsApiUrl(
[
'callback' => 'DrupalGeolocationGoogleLoader',
'loading' => 'async',
],
'/js'
);
$render_array['#attached'] = BubbleableMetadata::mergeAttachments(
$render_array['#attached'] ?? [],
[
'drupalSettings' => [
'geolocation' => [
'maps' => [
$render_array['#id'] => [
'async_scripts' => [$google_url],
'google_map_settings' => $map_settings,
],
],
],
],
'library' => [
'geolocation_google_maps/geolocation_google_maps.loader',
],
]
);
return parent::alterRenderArray($render_array, $map_settings, $context);
}
}
