geolocation-8.x-3.x-dev/modules/geolocation_leaflet/src/Plugin/geolocation/MapFeature/LeafletControlZoom.php
modules/geolocation_leaflet/src/Plugin/geolocation/MapFeature/LeafletControlZoom.php
<?php
namespace Drupal\geolocation_leaflet\Plugin\geolocation\MapFeature;
use Drupal\geolocation\Attribute\MapFeature;
use Drupal\geolocation\Plugin\geolocation\MapFeature\ControlElementBase;
/**
* Provides Zoom control element.
*/
#[MapFeature(
id: 'leaflet_control_zoom',
name: new \Drupal\Core\StringTranslation\TranslatableMarkup('Map Control - Zoom'),
description: new \Drupal\Core\StringTranslation\TranslatableMarkup('Add buttons to zoom the map.'),
type: 'leaflet'
)]
class LeafletControlZoom extends ControlElementBase {
}
