Fix: fix filter 'has at least one image', fix #2377

This commit is contained in:
Pieter Vander Vennet 2025-04-09 17:17:38 +02:00
parent c7a07e6f00
commit 15f3583f00

View file

@ -128,10 +128,8 @@
"osmTags": {
"or": [
"image~*",
"image:0~*",
"image:1~*",
"image:2~*",
"image:3~*",
"image:[0-9]+~~*",
"panoramax:[0-9]+~~*",
"mapillary~*"
]
}
@ -148,12 +146,14 @@
},
"osmTags": {
"and": [
"image=",
"image:0=",
"image:1=",
"image:2=",
"image:3=",
"mapillary="
{
"or": [
"image!~*",
"image:[0-9]+!~~*",
"panoramax:[0-9]+!~~*",
"mapillary!~*"
]
}
]
}
}