From 03b414b777f6676378674aabcb57dffc920029fd Mon Sep 17 00:00:00 2001 From: JIANG Date: Tue, 11 Nov 2025 18:06:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=B1=9E=E6=80=A7=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E5=A4=B1=E8=B4=A5=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/mapQueryService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/mapQueryService.ts b/src/utils/mapQueryService.ts index 0933d99..47d8e46 100644 --- a/src/utils/mapQueryService.ts +++ b/src/utils/mapQueryService.ts @@ -228,7 +228,7 @@ const queryFeaturesByIds = async ( return []; } - const orFilter = ids.map((id) => `id=${id}`).join(" OR "); + const orFilter = ids.map((id) => `id='${id}'`).join(" OR "); try { if (!layer) {