mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-31 09:05:14 +01:00
Filter all way references, not only "ref"s
This commit is contained in:
parent
84dc58da71
commit
2aa759a4bc
@ -182,7 +182,9 @@ void RasterTile::processLineLabels(QList<TextItem*> &textItems,
|
||||
continue;
|
||||
if (!ri->rule().match(path.path->closed, path.path->tags))
|
||||
continue;
|
||||
bool limit = (ri->key() == "ref");
|
||||
bool limit = (ri->key() == "ref" || ri->key() == "ele"
|
||||
|| ri->key() == "ref_hike" || ri->key() == "ref_cycle"
|
||||
|| ri->key() == "ref_mtb");
|
||||
if (limit && set.contains(*lbl))
|
||||
continue;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user