X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/051998dd80b0def50058266b7adbdf2e971032eb..1d4dcd914fd277aebf242037064612224f4dde54:/lib/template/address-jsonv2.php?ds=inline diff --git a/lib/template/address-jsonv2.php b/lib/template/address-jsonv2.php index 64c871c1..d6214176 100644 --- a/lib/template/address-jsonv2.php +++ b/lib/template/address-jsonv2.php @@ -12,8 +12,7 @@ { if ($aPlace['place_id']) $aFilteredPlaces['place_id'] = $aPlace['place_id']; $aFilteredPlaces['licence'] = "Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright"; - $sOSMType = ($aPlace['osm_type'] == 'N'?'node':($aPlace['osm_type'] == 'W'?'way':($aPlace['osm_type'] == 'R'?'relation': - ($aPlace['osm_type'] == 'T'?'tiger':($aPlace['osm_type'] == 'I'?'interpolation':''))))); + $sOSMType = formatOSMType($aPlace['osm_type']); if ($sOSMType) { $aFilteredPlaces['osm_type'] = $sOSMType; @@ -41,11 +40,6 @@ if (isset($aPlace['aBoundingBox'])) { $aFilteredPlaces['boundingbox'] = $aPlace['aBoundingBox']; - - if (isset($aPlace['aPolyPoints']) && $bAsPoints) - { - $aFilteredPlaces['polygonpoints'] = $aPlace['aPolyPoints']; - } } if (isset($aPlace['asgeojson']))