openlayers-8.x-4.x-dev/src/Plugin/Interaction/KeyboardPan/KeyboardPan.php
src/Plugin/Interaction/KeyboardPan/KeyboardPan.php
<?php
namespace Drupal\openlayers\Plugin\Interaction\KeyboardPan;
use Drupal\Core\Form\FormStateInterface;
use Drupal\openlayers\Types\Interaction;
/**
* FIX - Insert short comment here.
*
* @OpenlayersPlugin(
* id = "ol_interaction_keyboardpan",
* label = @Translation("Keyboard Pan"),
* description = @Translation("Allows the user to pan the map by using the keyboard."),
* service = "openlayers.Interaction:KeyboardPan",
* library = "openlayers-plugin-interaction-keyboardpan",
* is_configurable = "true",
* type = "interaction"
* )
*/
class KeyboardPan extends Interaction {
/**
* {@inheritdoc}
*/
public function buildConfigurationForm(array $form, FormStateInterface $form_state) {
return $form;
}
}
