修复属性查询失败的bug
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user