]> git.openstreetmap.org Git - nominatim.git/commitdiff
Main tag information added to geocodejson in reverse geocoding
authordanil <danil@voxelmaps.com>
Tue, 7 Feb 2023 20:19:49 +0000 (00:19 +0400)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 22 Mar 2023 10:40:31 +0000 (11:40 +0100)
lib-php/template/address-geocodejson.php

index d54aef4005b26f843d890641f68e74aac5774bd7..28c605f76ae6e177236ba5a1af5ec3e5fd69c2e6 100644 (file)
@@ -36,6 +36,9 @@ if (empty($aPlace)) {
         $aFilteredPlaces['properties']['geocoding']['osm_id'] = $aPlace['osm_id'];
     }
 
+    $aFilteredPlaces['properties']['geocoding']['osm_key'] = $aPlace['class'];
+    $aFilteredPlaces['properties']['geocoding']['osm_value'] = $aPlace['type'];
+
     $aFilteredPlaces['properties']['geocoding']['type'] = addressRankToGeocodeJsonType($aPlace['rank_address']);
 
     $aFilteredPlaces['properties']['geocoding']['accuracy'] = (int) $fDistance;