X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/d933ead2b503bd0377b1c8f7c0984f29b23ed908..82a98f3780e30eda30e2c4a47c70efeb9f6fda43:/lib-php/AddressDetails.php diff --git a/lib-php/AddressDetails.php b/lib-php/AddressDetails.php index 91e3d89f..cfdd0416 100644 --- a/lib-php/AddressDetails.php +++ b/lib-php/AddressDetails.php @@ -1,4 +1,12 @@ addSubdivisionCode($aAddress, $aLine['admin_level'], $aLine['name']); + } } } @@ -166,4 +178,14 @@ class AddressDetails { return $this->aAddressLines; } + + private function addSubdivisionCode(&$aAddress, $iAdminLevel, $nameDetails) + { + if (is_string($nameDetails)) { + $nameDetails = json_decode('{' . str_replace('"=>"', '":"', $nameDetails) . '}', true); + } + if (!empty($nameDetails['ISO3166-2'])) { + $aAddress["ISO3166-2-lvl$iAdminLevel"] = $nameDetails['ISO3166-2']; + } + } }