Hi everyone, I was wondering if it’s possible to specify the logical union between two or more keys in a query without writing the same instruction for every key.
Let’s say I want to get every node feature tagged as “historic” and all the node feature tagges as “tourism”.
The only way I could make it work was:
way[tourism]({{bbox}});
way[historic]({{bbox}});
I was wondering if it’s possible to do something like
way[tourism][historic]
, to compress everything in one instruction. This example doesn’t work, nor the
way[tourism|historic]
.
Thanks.