From 9c862586402855a63d2d6beea407e57ad7655e4c Mon Sep 17 00:00:00 2001 From: sfchu Date: Tue, 1 Apr 2025 19:48:18 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=9F=BA=E4=BA=8E=E9=A2=84=E6=B8=B2?= =?UTF-8?q?=E6=9F=93=E6=8A=80=E6=9C=AF=E5=AE=9E=E7=8E=B0Web=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E7=9E=AC=E5=BC=80=E6=95=88=E6=9E=9C=E3=80=91=E4=BB=A3?= =?UTF-8?q?=E7=A0=81=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entry/src/main/ets/pages/WebPage.ets | 1 + 1 file changed, 1 insertion(+) diff --git a/entry/src/main/ets/pages/WebPage.ets b/entry/src/main/ets/pages/WebPage.ets index 29cbf39..fe0baaa 100644 --- a/entry/src/main/ets/pages/WebPage.ets +++ b/entry/src/main/ets/pages/WebPage.ets @@ -30,6 +30,7 @@ class Data { function webBuilder(data: Data) { Column() { Web({ src: data.url, controller: data.controller }) + .geolocationAccess(false) .onControllerAttached(() => { try { // Set the whitelist to allow access to only the trust web page. -- Gitee