You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the housenumbers are not listed when are simple points on osm map.
Adding this code made addr:housenumber code listed...
please add this "elif" code into osminforesults.py, below line 133 :
elif 'addr:housenumber' in elementTags.keys():
if 'addr:street' in elementTags.keys() and 'addr:housenumber' in elementTags.keys():
elementTitle = elementTags['addr:street'] + ', ' + elementTags['addr:housenumber']
The text was updated successfully, but these errors were encountered:
marcobra
changed the title
feature request: list addr:housenumber also when are not tied to building element
feature request: list addr:housenumber also when they are not a building attribute
Mar 31, 2016
and show points elements with addresses also when the "building" tag is not present...
if 'building' in elementTags.keys():
...
...
elif 'addr:housenumber' in elementTags.keys():
and differ from this, the addr:street here is showed only if there is a tag "building" in element
if 'building' in elementTags.keys():
if 'addr:street' in elementTags.keys() and 'addr:housenumber' in elementTags.keys():
elementTitle = elementTags['addr:street'] + ', ' + elementTags['addr:housenumber']
else:
elementTitle = 'building'
Hi,
the housenumbers are not listed when are simple points on osm map.
Adding this code made addr:housenumber code listed...
please add this "elif" code into osminforesults.py, below line 133 :
In attach the modified file...
osminforesults.py.zip
and the testing result
Thank
The text was updated successfully, but these errors were encountered: