You are here

OL3CesiumControl.php in Openlayers 7.3

Control: OL3CesiumControl.

File

modules/openlayers_cesium/src/Plugin/Control/OL3CesiumControl/OL3CesiumControl.php
View source
<?php

/**
 * @file
 * Control: OL3CesiumControl.
 */
namespace Drupal\openlayers_cesium\Plugin\Control\OL3CesiumControl;

use Drupal\openlayers\Types\Control;

/**
 * Class OL3CesiumControl.
 *
 * @OpenlayersPlugin(
 *   id = "OL3CesiumControl",
 *   description = "Provides a Openlayers Cesium control."
 * )
 */
class OL3CesiumControl extends Control {

  /**
   * @inheritDoc
   */
  public function attached() {
    $attached = parent::attached();
    $attached['libraries_load'][] = array(
      'ol3-cesium',
    );
    return $attached;
  }

}

Classes

Namesort descending Description
OL3CesiumControl Class OL3CesiumControl.