You are here

public function ControlCustomGeocoder::alterMap in Geolocation Field 8.3

Same name and namespace in other branches
  1. 8.2 modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/ControlCustomGeocoder.php \Drupal\geolocation_google_maps\Plugin\geolocation\MapFeature\ControlCustomGeocoder::alterMap()

Alter render array.

Parameters

array $render_array: Render array.

array $feature_settings: The current feature settings.

array $context: Context like field formatter, field widget or view.

Return value

array Render array.

Overrides ControlCustomElementBase::alterMap

File

modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/ControlCustomGeocoder.php, line 141

Class

ControlCustomGeocoder
Provides Geocoding control element.

Namespace

Drupal\geolocation_google_maps\Plugin\geolocation\MapFeature

Code

public function alterMap(array $render_array, array $feature_settings, array $context = []) {
  $render_array = parent::alterMap($render_array, $feature_settings, $context);

  /** @var \Drupal\geolocation\GeocoderInterface $geocoder_plugin */
  $geocoder_plugin = $this->geocoderManager
    ->getGeocoder($feature_settings['geocoder'], $feature_settings['settings']);
  if (empty($geocoder_plugin)) {
    return $render_array;
  }
  $render_array['#attached'] = BubbleableMetadata::mergeAttachments(empty($render_array['#attached']) ? [] : $render_array['#attached'], [
    'library' => [
      'geolocation_google_maps/mapfeature.' . $this
        ->getPluginId(),
    ],
    'drupalSettings' => [
      'geolocation' => [
        'maps' => [
          $render_array['#id'] => [
            $this
              ->getPluginId() => [
              'enable' => TRUE,
            ],
          ],
        ],
      ],
    ],
  ]);
  $geocoder_plugin
    ->formAttachGeocoder($render_array['#controls'][$this->pluginId], $render_array['#id']);
  return $render_array;
}