]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/template/address-json.php
factor out link formatting function and osm type translation
[nominatim.git] / lib / template / address-json.php
index 6fd101bbaac0f97c511c7250b99e62554c52e654..bf6c700bf580acaec788671cbf734a8167613db0 100644 (file)
@@ -12,7 +12,7 @@
        {
                if (isset($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':'')));
+               $sOSMType = formatOSMType($aPlace['osm_type']);
                if ($sOSMType)
                {
                        $aFilteredPlaces['osm_type'] = $sOSMType;
                if (isset($aPlace['aBoundingBox']))
                {
                        $aFilteredPlaces['boundingbox'] = $aPlace['aBoundingBox'];
-
-                       if (isset($aPlace['aPolyPoints']) && $bAsPoints)
-                       {
-                               $aFilteredPlaces['polygonpoints'] = $aPlace['aPolyPoints'];
-                       }
                }
 
                if (isset($aPlace['asgeojson']))
@@ -54,8 +49,6 @@
                {
                        $aFilteredPlaces['geokml'] = $aPlace['askml'];
                }
-
-
        }
 
        javascript_renderData($aFilteredPlaces);