我有一个简单的Windows10 Web App,由MS Appstudio生成https://appstudio.windows.com/ => "托管网络应用程序"。 该应用仅使用" Package.appxmanifest"并加载一个移动优化网站。
在Web App中我使用了。 是否可以整合"更改位置隐私设置"来自https://docs.microsoft.com/en-us/windows/uwp/maps-and-location/get-location的功能?
<!--Set Visibility to Visible when access to location is denied -->
<TextBlock x:Name="LocationDisabledMessage" FontStyle="Italic"
Visibility="Collapsed" Margin="0,15,0,0" TextWrapping="Wrap" >
<Run Text="This app is not able to access Location. Go to " />
<Hyperlink NavigateUri="ms-settings:privacy-location">
<Run Text="Settings" />
</Hyperlink>
<Run Text=" to check the location privacy settings."/>
</TextBlock>
答案 0 :(得分:1)
在Web App中我使用了。是否可以整合&#34;更改位置隐私设置&#34;函数来自https://docs.microsoft.com/en-us/windows/uwp/maps-and-location/get-location?
对于您的方案,您可以集成&#34;更改位置隐私设置&#34;通过在html页面中使用java-scrip Api来实现。您可以参考以下代码来启动privacy-location
。
<强>的index.html 强>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>LunchUriTest</title>
<link href="css/default.css" rel="stylesheet" />
</head>
<body>
<div>Content goes here!</div>
<button id="btnClick">Clik Me</button>
<script src="js/main.js"></script>
</body>
</html>
<强> Main.js 强>
(function () {
document.querySelector("#btnClick").onclick = function () {
if (typeof (Windows) != "undefined") {
var uri = Windows.Foundation.Uri("ms-settings:privacy-location")
Windows.System.Launcher.launchUriAsync(uri);
} else {
alert("Current environment is not uwp ")
}
}
})();