]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/template/search-json.php
add osm_type='tiger' to json, jsonv2 and xml output
[nominatim.git] / lib / template / search-json.php
index fc50ee0e09b2554916271e00f11cac6082418ba3..0bfbc90496e8bfd99346e9491b52db015b75994b 100644 (file)
@@ -8,8 +8,8 @@
                                'place_id'=>$aPointDetails['place_id'],
                                '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':'')));
+        
+               $sOSMType = ($aPointDetails['osm_type'] == 'N'?'node':($aPointDetails['osm_type'] == 'W'?'way':($aPointDetails['osm_type'] == 'R'?'relation':($aPointDetails['osm_type'] == 'T'?'tiger':''))));
                if ($sOSMType)
                {
                        $aPlace['osm_type'] = $sOSMType;