X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/b612b9942109a08c6ff8f49e3327e015fec08e67..d145409d64297ba2830c27bfdfa93496a604ec70:/lib/template/details-json.php diff --git a/lib/template/details-json.php b/lib/template/details-json.php index 4afb1b0b..0449dbb9 100644 --- a/lib/template/details-json.php +++ b/lib/template/details-json.php @@ -26,8 +26,9 @@ $aPlaceDetails['calculated_importance'] = (float) $aPointDetails['calculated_imp $aPlaceDetails['extratags'] = $aPointDetails['aExtraTags']; $aPlaceDetails['calculated_wikipedia'] = $aPointDetails['wikipedia']; -if ($aPointDetails['icon']) { - $aPlaceDetails['icon'] = CONST_Website_BaseURL.'images/mapicons/'.$aPointDetails['icon'].'.n.32.png'; +$sIcon = Nominatim\ClassTypes\getIconFile($aPointDetails); +if (isset($sIcon)) { + $aPlaceDetails['icon'] = $sIcon; } $aPlaceDetails['rank_address'] = (int) $aPointDetails['rank_address']; @@ -47,11 +48,13 @@ $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, 'rank_address' => $aFull['rank_address'] ? (int) $aFull['rank_address'] : null, - 'distance' => (float) $aFull['distance'] + 'distance' => (float) $aFull['distance'], + 'isaddress' => isset($aFull['isaddress']) ? (bool) $aFull['isaddress'] : null ); return $aMapped;