13 lines
499 B
Plaintext
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;
|
|
}
|
|
}
|
|
|