dev/endpoints/endpoint_get_fields/geolocation-extractor
2024-03-15 17:02:56 +02:00

13 lines
499 B
Plaintext

/* GEOLOCATION Field */
$field_geolocation = [];
if ($node->hasField('field_geolocation') && !$node->get('field_geolocation')->isEmpty()) {
$geolocation_field = $node->get('field_geolocation')->first();
$latitude = $geolocation_field->lat;
$longitude = $geolocation_field->lng;
if ($latitude && $longitude) {
$field_geolocation['lat'] = $latitude;
$field_geolocation['lng'] = $longitude;
}
}