geolocation-8.x-3.x-dev/modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/GoogleMapDisableUserInteraction.php
modules/geolocation_google_maps/src/Plugin/geolocation/MapFeature/GoogleMapDisableUserInteraction.php
<?php
namespace Drupal\geolocation_google_maps\Plugin\geolocation\MapFeature;
use Drupal\geolocation\Attribute\MapFeature;
use Drupal\geolocation\MapFeatureBase;
/**
* Provides marker infowindow.
*/
#[MapFeature(
id: 'map_disable_user_interaction',
name: new \Drupal\Core\StringTranslation\TranslatableMarkup('Disable User Interaction'),
description: new \Drupal\Core\StringTranslation\TranslatableMarkup('Disable any zooming or panning by interaction from the user.'),
type: 'google_maps'
)]
class GoogleMapDisableUserInteraction extends MapFeatureBase {
}
