You are here

GeolocationMapFormatter.php in Geolocation Field 8.2

Same filename and directory in other branches
  1. 8.3 src/Plugin/Field/FieldFormatter/GeolocationMapFormatter.php

File

src/Plugin/Field/FieldFormatter/GeolocationMapFormatter.php
View source
<?php

namespace Drupal\geolocation\Plugin\Field\FieldFormatter;


/**
 * Plugin implementation of the 'geolocation' formatter.
 *
 * @FieldFormatter(
 *   id = "geolocation_map",
 *   module = "geolocation",
 *   label = @Translation("Geolocation Formatter - Map"),
 *   field_types = {
 *     "geolocation"
 *   }
 * )
 */
class GeolocationMapFormatter extends GeolocationMapFormatterBase {

  /**
   * {@inheritdoc}
   */
  protected static $dataProviderId = 'geolocation_field_provider';

}

Classes

Namesort descending Description
GeolocationMapFormatter Plugin implementation of the 'geolocation' formatter.