]> git.openstreetmap.org Git - nominatim.git/commitdiff
also fix type output in geocodejson for reverse
authorSarah Hoffmann <lonvia@denofr.de>
Tue, 24 May 2022 08:57:45 +0000 (10:57 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 1 Jun 2022 18:46:08 +0000 (20:46 +0200)
lib-php/template/address-geocodejson.php

index 584e27cff7b7484730ddebf60a20092c9143ead4..8a0a6289a9697a9a3a5c84ecb95c3224875ad02e 100644 (file)
@@ -36,7 +36,7 @@ if (empty($aPlace)) {
         $aFilteredPlaces['properties']['geocoding']['osm_id'] = $aPlace['osm_id'];
     }
 
-    $aFilteredPlaces['properties']['geocoding']['type'] = $aPlace['type'];
+    $aFilteredPlaces['properties']['geocoding']['type'] = addressRankToGeocodeJsonType($aPlace['rank_address']);
 
     $aFilteredPlaces['properties']['geocoding']['accuracy'] = (int) $fDistance;