Map filter logical operators

Hello folks!
I’ve just discovered the new filtering interface in web maps. However, it’s not clear to me how to combine conditions using AND / OR operators, like we do in QGIS.

Is this supported, and if so, what’s the correct way to set it up? Any tips appreciated!

Hello Jordan,
Right now, logical operators are implemented via Groups. You can create nested groups, and for each group choose whether ALL or ANY of the conditions inside that group should apply.

For example, this configuration

would work as

(“HIGHWAY” = ‘residential’ AND “SURFACE” = ‘paved’) OR (“HIGHWAY” = ‘service’ AND “SURFACE” = ‘asphalt’)

1 Like