From 29df9771bb137aec22302a3d6c01326a4e6a5f2f Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Wed, 8 Apr 2020 10:11:08 +0200 Subject: [PATCH] further tweaks to geocodejson address output Removes the place itself from the address details and use the lowest ranking element in the rank range for the output. --- lib/AddressDetails.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/lib/AddressDetails.php b/lib/AddressDetails.php index 8d2b3e08..3322c6b2 100644 --- a/lib/AddressDetails.php +++ b/lib/AddressDetails.php @@ -9,10 +9,13 @@ require_once(CONST_BasePath.'/lib/ClassTypes.php'); */ class AddressDetails { + private $iPlaceID; private $aAddressLines; public function __construct(&$oDB, $iPlaceID, $sHousenumber, $mLangPref) { + $this->iPlaceID = $iPlaceID; + if (is_array($mLangPref)) { $mLangPref = $oDB->getArraySQL($oDB->getDBQuotedList($mLangPref)); } @@ -115,7 +118,7 @@ class AddressDetails */ public function addGeocodeJsonAddressParts(&$aJson) { - foreach ($this->aAddressLines as $aLine) { + foreach (array_reverse($this->aAddressLines) as $aLine) { if (!$aLine['isaddress']) { continue; } @@ -124,13 +127,19 @@ class AddressDetails continue; } - $iRank = (int)$aLine['rank_address']; - if ($aLine['type'] == 'postcode' || $aLine['type'] == 'postal_code') { $aJson['postcode'] = $aLine['localname']; } elseif ($aLine['type'] == 'house_number') { $aJson['housenumber'] = $aLine['localname']; - } elseif ($iRank > 25 && $iRank < 28) { + } + + if ($this->iPlaceID == $aLine['place_id']) { + continue; + } + + $iRank = (int)$aLine['rank_address']; + + if ($iRank > 25 && $iRank < 28) { $aJson['street'] = $aLine['localname']; } elseif ($iRank >= 22 && $iRank <= 25) { $aJson['locality'] = $aLine['localname']; -- 2.45.1