mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-02-07 12: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;
|
continue;
|
||||||
if (!ri->rule().match(path.path->closed, path.path->tags))
|
if (!ri->rule().match(path.path->closed, path.path->tags))
|
||||||
continue;
|
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))
|
if (limit && set.contains(*lbl))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user