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": { "osmTags": {
"or": [ "or": [
"image~*", "image~*",
"image:0~*", "image:[0-9]+~~*",
"image:1~*", "panoramax:[0-9]+~~*",
"image:2~*",
"image:3~*",
"mapillary~*" "mapillary~*"
] ]
} }
@ -148,12 +146,14 @@
}, },
"osmTags": { "osmTags": {
"and": [ "and": [
"image=", {
"image:0=", "or": [
"image:1=", "image!~*",
"image:2=", "image:[0-9]+!~~*",
"image:3=", "panoramax:[0-9]+!~~*",
"mapillary=" "mapillary!~*"
]
}
] ]
} }
} }