]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/template/address-xml.php
Merge pull request #469 from lonvia/refactor-php
[nominatim.git] / lib / template / address-xml.php
index a3369d34890e3b0a95c3cd897e5bce34155b581d..2bfcffbf5ac0b3a3d8bb6b0e646e3139b5b90697 100644 (file)
@@ -22,8 +22,7 @@
        {
                echo "<result";
                if ($aPlace['place_id']) echo ' place_id="'.$aPlace['place_id'].'"';
-               $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) echo ' osm_type="'.$sOSMType.'"'.' osm_id="'.$aPlace['osm_id'].'"';
                if ($aPlace['ref']) echo ' ref="'.htmlspecialchars($aPlace['ref']).'"';
                if (isset($aPlace['lat'])) echo ' lat="'.htmlspecialchars($aPlace['lat']).'"';
                        echo ' boundingbox="';
                        echo join(',', $aPlace['aBoundingBox']);
                        echo '"';
-
-                       if ($bAsPoints && isset($aPlace['aPolyPoints']))
-                       {
-                               echo ' polygonpoints=\'';
-                               echo json_encode($aPlace['aPolyPoints']);
-                               echo '\'';
-                       }
                }
 
                if (isset($aPlace['asgeojson']))