24 if ($location = $address->getLocation())
26 $locationId = $location->getId();
29 $latitude = $address->getLatitude();
30 $longitude = $address->getLongitude();
33 'ID' => $address->getId(),
34 'LOCATION_ID' => $locationId,
35 'LANGUAGE_ID' => $address->getLanguageId(),
36 'LATITUDE' => $latitude ===
'' ? null : (float)$latitude,
37 'LONGITUDE' => $longitude ===
'' ?
null : (float)$longitude,