Request location coordinates after user has blocked access in javascript(用户在 javascript 中阻止访问后请求位置坐标)
问题描述
如果用户过去阻止了我的请求,我如何在 javascript 中提示用户提供他们的地理位置?(使用 navigator.geolocation.getCurrentPosition
).
How can I prompt a user for their geo-location in javascript if they've blocked my request in the past? (using navigator.geolocation.getCurrentPosition
).
例如,我的网络应用需要定位服务,而用户不小心点击了阻止",或者他们改变了主意.我该怎么做才能再次提示他们?
For example, my web app requires location services, and the user accidentally clicks "block", or they change their mind. What can I do to prompt them again?
推荐答案
正如@matthew-shwery 所说,您不能更改权限.
你能做的最好的就是检查权限并通知用户权限被拒绝
As mentioned by @matthew-shwery, you can not change the permission.
the best you could do is check for the permission and notify the user is the permission is denied
navigator.permissions.query({
name: 'geolocation'
}).then(function(result) {
if (result.state == 'granted') {
report(result.state);
geoBtn.style.display = 'none';
} else if (result.state == 'prompt') {
report(result.state);
geoBtn.style.display = 'none';
navigator.geolocation.getCurrentPosition(revealPosition, positionDenied, geoSettings);
} else if (result.state == 'denied') {
report(result.state);
geoBtn.style.display = 'inline';
}
result.onchange = function() {
report(result.state);
}
});
地理位置文档
这篇关于用户在 javascript 中阻止访问后请求位置坐标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:用户在 javascript 中阻止访问后请求位置坐标
基础教程推荐
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01