# we're only interested in a very few properties for
# address points.
label_properties = dict(
addr_housenumber=addr_housenumber,
kind='address')
We need to also set min_zoom=17 in that section, like:
# we're only interested in a very few properties for
# address points.
label_properties = dict(
addr_housenumber=addr_housenumber,
min_zoom=17,
kind='address')
Occasionally the
address
points exported in the buildings layer are missingmin_zoom
props.Besides the vanilla address nodes in OSM, Tilezen harvests address points in queries.yaml off ways as well via this transform.py logic:
We need to also set
min_zoom=17
in that section, like: