]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/template/search-json.php
Merge pull request #469 from lonvia/refactor-php
[nominatim.git] / lib / template / search-json.php
index 5d5ebfe81f9782706c4cb9ed24a74920c9baf15e..d3dc00f3b505b497eb90f404d770f9ce2e2d0f56 100644 (file)
@@ -9,8 +9,7 @@
                                'licence'=>"Data © OpenStreetMap contributors, ODbL 1.0. http://www.openstreetmap.org/copyright",
                        );
         
-               $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?
-                                       'relation':($aPointDetails['osm_type'] == 'T'?'tiger':($aPointDetails['osm_type'] == 'I'?'interpolation':'')))));
+               $sOSMType = formatOSMType($aPointDetails['osm_type']);
                if ($sOSMType)
                {
                        $aPlace['osm_type'] = $sOSMType;