openlayers-8.x-4.x-dev/src/Plugin/Interaction/Pointer/Pointer.php
src/Plugin/Interaction/Pointer/Pointer.php
<?php
namespace Drupal\openlayers\Plugin\Interaction\Pointer;
use Drupal\Core\Form\FormStateInterface;
use Drupal\openlayers\Types\Interaction;
/**
* FIX - Insert short comment here.
*
* @OpenlayersPlugin(
* id = "ol_interaction_pointer",
* label = @Translation("Pointer"),
* description = @Translation("TODO..."),
* service = "openlayers.Interaction:Pointer",
* library = "openlayers-plugin-interaction-pointer",
* is_configurable = "true",
* type = "interaction"
* )
*/
class Pointer extends Interaction {
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
return $form;
}
}
