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 中阻止访问后请求位置坐标


- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- Fetch API 如何获取响应体? 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 失败的 Canvas 360 jquery 插件 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01