X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/b4fec57b6d53f8e8a45c46ff11f13cbcbea1006a..bc94318d8349404f7112a6214c782cfc1c290a64:/lib-php/AddressDetails.php?ds=sidebyside 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']; + } + } }