geolocation-8.x-3.x-dev/modules/geolocation_baidu/src/Plugin/geolocation/MapProvider/Baidu.php
modules/geolocation_baidu/src/Plugin/geolocation/MapProvider/Baidu.php
<?php
namespace Drupal\geolocation_baidu\Plugin\geolocation\MapProvider;
use Drupal\geolocation\Attribute\MapProvider;
use Drupal\Core\Render\BubbleableMetadata;
use Drupal\geolocation\MapProviderBase;
/**
* Provides Baidu Maps API.
*/
#[MapProvider(
id: 'baidu',
name: new \Drupal\Core\StringTranslation\TranslatableMarkup('Baidu Maps'),
description: new \Drupal\Core\StringTranslation\TranslatableMarkup('Baidu support.'))]
class Baidu extends MapProviderBase {
/**
* Baidu API Url.
*
* @var string
*/
public static string $apiBaseUrl = 'https://api.map.baidu.com/api?v=1.0&type=webgl';
/**
* {@inheritdoc}
*/
public static function getDefaultSettings(): array {
return array_replace_recursive(
parent::getDefaultSettings(),
[
'zoom' => 10,
'height' => '400px',
'width' => '100%',
'map_features' => [
'baidu_navigation_control' => [
'enabled' => TRUE,
],
],
]
);
}
/**
* {@inheritdoc}
*/
public function getSettings(array $settings): array {
$settings = parent::getSettings($settings);
$settings['zoom'] = (int) $settings['zoom'];
return $settings;
}
/**
* {@inheritdoc}
*/
public function getSettingsSummary(array $settings): array {
$settings = $this->getSettings($settings);
$summary = parent::getSettingsSummary($settings);
$summary[] = $this->t('Zoom level: @zoom', ['@zoom' => $settings['zoom']]);
$summary[] = $this->t('Height: @height', ['@height' => $settings['height']]);
$summary[] = $this->t('Width: @width', ['@width' => $settings['width']]);
return $summary;
}
/**
* {@inheritdoc}
*/
public function getSettingsForm(array $settings, array $parents = [], array $context = []): array {
$settings += self::getDefaultSettings();
if ($parents) {
$parents_string = implode('][', $parents);
}
else {
$parents_string = NULL;
}
$form = parent::getSettingsForm($settings, $parents, $context);
$form['height'] = [
'#group' => $parents_string,
'#type' => 'textfield',
'#title' => $this->t('Height'),
'#description' => $this->t('Enter the dimensions and the measurement units. E.g. 200px or 100%.'),
'#size' => 4,
'#default_value' => $settings['height'],
];
$form['width'] = [
'#group' => $parents_string,
'#type' => 'textfield',
'#title' => $this->t('Width'),
'#description' => $this->t('Enter the dimensions and the measurement units. E.g. 200px or 100%.'),
'#size' => 4,
'#default_value' => $settings['width'],
];
$form['zoom'] = [
'#group' => $parents_string,
'#type' => 'select',
'#title' => $this->t('Zoom level'),
'#options' => range(3, 19),
'#description' => $this->t('The initial resolution at which to display the map, where zoom 0 corresponds to a map of the Earth fully zoomed out, and higher zoom levels zoom in at a higher resolution.'),
'#default_value' => $settings['zoom'],
'#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 static function getControlPositions(): array {
return [
'BMAP_ANCHOR_TOP_LEFT' => t('Top left'),
'BMAP_ANCHOR_TOP_RIGHT' => t('Top right'),
'BMAP_ANCHOR_BOTTOM_LEFT' => t('Bottom left'),
'BMAP_ANCHOR_BOTTOM_RIGHT' => t('Bottom right'),
];
}
/**
* Get Baidu API Base URL.
*
* @return string
* Base Url.
*/
public function getApiUrl(): string {
$config = \Drupal::config('geolocation_baidu.settings');
$api_key = $config->get('key');
return self::$apiBaseUrl . '&ak=' . $api_key . '&callback=' . "Drupal.geolocation.maps.mapProviderCallback('Baidu')";
}
/**
* {@inheritdoc}
*/
public function alterRenderArray(array $render_array, array $map_settings = [], array $context = []): array {
$render_array['#attached'] = BubbleableMetadata::mergeAttachments(
$render_array['#attached'] ?? [],
[
'drupalSettings' => [
'geolocation' => [
'maps' => [
$render_array['#id'] => [
'scripts' => [$this->getApiUrl()],
'baidu_settings' => $map_settings,
],
],
],
],
]
);
return parent::alterRenderArray($render_array, $map_settings, $context);
}
}
