gpt4 book ai didi

Cordova 插件位置准确性未显示请求

转载 作者:行者123 更新时间:2023-12-04 04:17:30 25 4
gpt4 key购买 nike

我正在使用 Location Accuracy Plugin结合 Ionic(在 Android 中测试)。

打电话时

this.locationAccuracy.request(this.locationAccuracy.REQUEST_PRIORITY_HIGH_ACCURACY)
.then(() => resolve("Request successful"),
error => {
console.error("Error requesting location : "+error.message);
});

我没有得到任何反馈。应该出现的弹出窗口也没有出现,控制台中也没有任何消息。当我再次尝试调用请求时,它告诉我已经有一个请求正在进行中。所以问题是,我只是看不到屏幕上的请求,但它似乎在后端发生并卡在某个地方。

requestLocationAuthorization() 返回“Granted”,canRequest() 在第一次调用时返回 true,稍后返回 false。一切都按预期进行。

最佳答案

public checkHomeLocationAccuracy() {

this.splashScreen.hide();
this.locationAccuracy.canRequest().then((canRequest: boolean) => {
console.log("canRequest" + canRequest);
if (!canRequest) {
this.locationAccuracy.request(this.locationAccuracy.REQUEST_PRIORITY_HIGH_ACCURACY).then(
() => this.getHomeSetRoot(),
error => this.platform.exitApp(),
);
} else {
this.locationAccuracy.request(this.locationAccuracy.REQUEST_PRIORITY_HIGH_ACCURACY).then(
() => this.getHomeSetRoot(),
error => this.platform.exitApp(),
);
}
});
}

关于 Cordova 插件位置准确性未显示请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46153962/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com