GeolocationSexagesimalFormatter.php in Geolocation Field 8.2
File
src/Plugin/Field/FieldFormatter/GeolocationSexagesimalFormatter.php
View source
<?php
namespace Drupal\geolocation\Plugin\Field\FieldFormatter;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\FormatterBase;
class GeolocationSexagesimalFormatter extends FormatterBase {
public function viewElements(FieldItemListInterface $items, $langcode) {
$element = [];
foreach ($items as $delta => $item) {
$element[$delta] = [
'#theme' => 'geolocation_sexagesimal_formatter',
'#lat' => $item::decimalToSexagesimal($item->lat),
'#lng' => $item::decimalToSexagesimal($item->lng),
];
}
return $element;
}
}