确保权限已授予:首先确认应用是否已经请求并获得了必要的位置权限。在 HarmonyOS 中,你需要在 config.json 文件中声明位置权限,并在运行时请求用户授权。{ "module": { "abilities": [ { "name": ".MainAbility", "label": "app_name", "icon": "$media:icon", "skills": [ { "actions": ["action.system.home"], "entities": ["entity.system.home"] } ], "reqPermissions": [ { "name": "ohos.permission.LOCATION", "usage": "usage_access" } ] } ] } }
确保权限已授予:首先确认应用是否已经请求并获得了必要的位置权限。在 HarmonyOS 中,你需要在 config.json 文件中声明位置权限,并在运行时请求用户授权。