位置API免责声明

发布于 2024-12-08 05:47:00 字数 194 浏览 1 评论 0原文

我最近在第 2.7.2 节上遇到了一个应用程序失败的问题,详细信息是关于未显示位置数据信息的。

我认为这意味着使用位置 API 服务的应用程序需要免责声明。

但是,我无法找到此免责声明所需的措辞,并且想确切地知道需要什么。

我希望在按下地图按钮时使用 MessageBox.Show 弹出,这足够吗?

提前致谢

I recently had an application fail on section 2.7.2 The details are around the location data information not being disaplayed.

I assume this means that a disclaimer is required for applications that use location API services.

However, I am unable to find the required wording for this disclaimer and would like to know exactly what is required.

I was hoping to use a MessageBox.Show to pop up when the map button is pressed, will this be sufficient?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

赢得她心 2024-12-15 05:47:00

您需要允许用户随时将其关闭。可以做到这一点的一种方法是在 IsolatedStorage 中存储一个标志,表明您已获得用户的许可。

MapButtonClicked(...)
{
    if (!Settings.HasSetting("allowLocation") || 
        !((bool)Settings.GetSetting("allowLocation"))
    {
        MessageBox.Show("Allow app to use your location?, "Location Services",MessageBoxButtons.OkCancel);
    }
    //handle result
    else
    {
        StartLocationSearch();
    }
}

在“设置”页面上:

<CheckBox x:Name=cbLocationAllow />



cbLocationAllowChecked(...)
{
    Settings.SetSetting("allowLocation", true);
}

cbLocationAllowUnchecked(...)
{
    Settings.SetSetting("allowLocation", false);
}

You need to allow the user to turn it off at any time. A way could could do this would to be to store a flag in IsolatedStorage which indicates that you've gotten the user's permission.

MapButtonClicked(...)
{
    if (!Settings.HasSetting("allowLocation") || 
        !((bool)Settings.GetSetting("allowLocation"))
    {
        MessageBox.Show("Allow app to use your location?, "Location Services",MessageBoxButtons.OkCancel);
    }
    //handle result
    else
    {
        StartLocationSearch();
    }
}

And on a Settings page:

<CheckBox x:Name=cbLocationAllow />



cbLocationAllowChecked(...)
{
    Settings.SetSetting("allowLocation", true);
}

cbLocationAllowUnchecked(...)
{
    Settings.SetSetting("allowLocation", false);
}
瀞厅☆埖开 2024-12-15 05:47:00

听起来好像,
大多数免责声明以弹出窗口等形式出现。我也曾一度使用弹出窗口作为免责声明。他们通过了,所以我不明白为什么它对你也不起作用。

Sounds like it,
Most disclaimers come in the form of a pop-up or so on. i used a pop-up for a disclaimer at one point too. they passed it, so i don't see why it wouldn't work for yours too.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文