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