使用HarmonyOS 鸿蒙Next定位服务获取当前位置时报错定位失败3301200
使用HarmonyOS 鸿蒙Next定位服务获取当前位置时报错定位失败3301200 使用定位服务获取当前位置时,报错定位失败:3301200
2 回复
错误码说明:https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/errorcode-geolocationmanager-V5#section3301200- 定位失败未获取到定位结果
可在代码中设置超时时间,代码如下:
import geoLocationManager from '@ohos.geoLocationManager';
let requestInfo: geoLocationManager.CurrentLocationRequest = {
priority: 0x203,
scenario: 0x300,
maxAccuracy: 0,
timeoutMs: 1000 * 60 * 5
};
geoLocationManager.getCurrentLocation(requestInfo)
更多关于使用HarmonyOS 鸿蒙Next定位服务获取当前位置时报错定位失败3301200的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html