]> git.openstreetmap.org Git - nominatim.git/commitdiff
Merge pull request #2974 from bloom256/main-tag-in-reverse-lookup
authorSarah Hoffmann <lonvia@denofr.de>
Sat, 11 Feb 2023 10:01:11 +0000 (11:01 +0100)
committerGitHub <noreply@github.com>
Sat, 11 Feb 2023 10:01:11 +0000 (11:01 +0100)
Main tag information added to geocodejson in reverse geocoding

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;