From 40a9b8fd62c3e50d6cc3975e247afb030c380549 Mon Sep 17 00:00:00 2001 From: sedum Date: Tue, 20 Dec 2022 06:25:50 +0100 Subject: [PATCH 1/2] fix typo in nominatim docs --- docs/install/nominatim.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install/nominatim.md b/docs/install/nominatim.md index 034864ee..5202861a 100644 --- a/docs/install/nominatim.md +++ b/docs/install/nominatim.md @@ -106,7 +106,7 @@ docker-compose pull See [Requirements](#requirements) about downloading the `.osm.pbf` files ```bash cd docs/docker/nominatim/ -wget https://download.geofabrik.de/europe/italy/nord-ovest-updates/nord-ovest-latest.osm.pbf \ +wget https://download.geofabrik.de/europe/italy/nord-ovest-latest.osm.pbf \ ./nominatim/data/default.osm.pbf ``` From e8f744960b95f4c87f8047b79314939093f86e8f Mon Sep 17 00:00:00 2001 From: sedum Date: Tue, 20 Dec 2022 06:26:37 +0100 Subject: [PATCH 2/2] add missing photon osm_property locality --- components/WhereInput.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/WhereInput.vue b/components/WhereInput.vue index 0caa47c4..1b41a0ee 100644 --- a/components/WhereInput.vue +++ b/components/WhereInput.vue @@ -256,7 +256,7 @@ export default { this.addressList = [] } } else if (this.geocoding_provider_type == "Photon") { - let photon_properties = ['housenumber', 'street', 'district', 'city', 'county', 'state', 'postcode', 'country'] + let photon_properties = ['housenumber', 'street', 'locality', 'district', 'city', 'county', 'state', 'postcode', 'country'] if (ret) { this.addressList = ret.features.map(v => {