Show house number for OSM candidates without street name

This commit is contained in:
Edward Betts 2021-11-12 11:43:33 +00:00
parent b18162fb1a
commit 87fae39c63
1 changed files with 6 additions and 0 deletions

View File

@ -210,6 +210,9 @@
<span v-else-if="osm.tags['addr:street'] && osm.address != osm.name">
<br>street: {{ osm.tags['addr:street'] }}
</span>
<span v-else-if="osm.tags['addr:housenumber'] && osm.address != osm.name">
<br>house number: {{ osm.tags['addr:housenumber'] }}
</span>
<span v-if="osm.address_list.length">
<br>nodes within building: {{ osm.address_list.join("; ") }}
@ -613,6 +616,9 @@
<span v-else-if="osm.tags['addr:street'] && osm.address != osm.name">
<br>street: {{ osm.tags['addr:street'] }}
</span>
<span v-else-if="osm.tags['addr:housenumber'] && osm.address != osm.name">
<br>house number: {{ osm.tags['addr:housenumber'] }}
</span>
<span v-if="osm.address_list.length">
<br>nodes within building: {{ osm.address_list.join("; ") }}