From: Sarah Hoffmann Date: Sun, 29 Mar 2020 19:06:39 +0000 (+0200) Subject: also emit place_type in json version of details X-Git-Tag: v3.5.0~62^2 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/98750922ebfca3f50ffb98ce64e33cb15ba57cf5 also emit place_type in json version of details --- diff --git a/lib/template/details-json.php b/lib/template/details-json.php index 4afb1b0b..955441ad 100644 --- a/lib/template/details-json.php +++ b/lib/template/details-json.php @@ -47,6 +47,7 @@ $funcMapAddressLine = function ($aFull) { 'place_id' => isset($aFull['place_id']) ? (int) $aFull['place_id'] : null, 'osm_id' => isset($aFull['osm_id']) ? (int) $aFull['osm_id'] : null, 'osm_type' => isset($aFull['osm_type']) ? $aFull['osm_type'] : null, + 'place_type' => isset($aFull['place_type']) ? $aFull['place_type'] : null, 'class' => $aFull['class'], 'type' => $aFull['type'], 'admin_level' => isset($aFull['admin_level']) ? (int) $aFull['admin_level'] : null,