You are here

Fractal.php in Openlayers 7.3

Component: Fractal.

File

modules/openlayers_library/src/Plugin/Component/Fractal/Fractal.php
View source
<?php

/**
 * @file
 * Component: Fractal.
 */
namespace Drupal\openlayers_library\Plugin\Component\Fractal;

use Drupal\openlayers\Openlayers;
use Drupal\openlayers\Types\Component;
use Drupal\openlayers\Types\ObjectInterface;

/**
 * Class Fractal.
 *
 * @OpenlayersPlugin(
 *   id = "Fractal"
 * )
 *
 */
class Fractal extends Component {

  /**
   * {@inheritdoc}
   */
  public function postBuild(array &$build, ObjectInterface $context = NULL) {
    $build['parameters'][$this
      ->getPluginId()] = array(
      '#type' => 'fieldset',
      '#title' => 'Example Fractal component',
      'swipe' => array(
        '#type' => 'rangefield',
        '#title' => 'Depth',
        '#min' => 0,
        '#max' => 10,
        '#step' => 1,
        '#value' => 5,
        '#attributes' => array(
          'id' => 'depth',
          'style' => 'width: 100%;',
        ),
      ),
      'count' => array(
        '#type' => 'item',
        '#title' => 'Points',
        '#markup' => '<span id="count"></span>',
      ),
      'length' => array(
        '#type' => 'item',
        '#title' => 'Length',
        '#markup' => '<span id="length"></span>',
      ),
    );
    $build['description']['#description'] = 'This example is based on the <a href="http://openlayers.org/en/master/examples/fractal.html">offical fractal example</a>. You need the <em><a href="https://drupal.org/project/elements">elements</a></em> module to get it working properly.';
  }

}

Classes

Namesort descending Description
Fractal Class Fractal.