Layar:将用户重定向到客户端本机浏览器中的 POI 网站

发布于 2024-12-20 18:55:07 字数 432 浏览 1 评论 0原文

我希望用户能够单击 POI,然后能够单击“转到网站”按钮,该按钮会在客户端本机浏览器中重定向到该 POI 的网站。 我认为此页面描述了我需要的内容: http:// layar.pbworks.com/w/page/35910641/User%20Interaction%20Dialog%20API#showdialog

但是,还不清楚对我来说:我怎样才能测试这个动作? - 我没有看到哪个请求(参数等是什么)被传递到我的服务器以便我返回 showDialog 对象 - 我不知道是否以及如何将 showDialog 对象嵌套在我的 POI 中 - 如何在测试模式下在层上测试此功能(尚未发布)

I want users to be able to click a POI and then be able to click a button 'goto website' which redirects to the website of that POI in the clients native browser.
I think this page describes what I need: http://layar.pbworks.com/w/page/35910641/User%20Interaction%20Dialog%20API#showdialog

However, whats not clear to me: how can I test the action?
- I dont see which request (what are the parameters etc) is passed to my server in order for me to return the showDialog object
- I dont see IF and HOW I should nest the showDialog object in my POI
- how can I test this functionality on a layar in test mode (not published yet)

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

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

发布评论

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

评论(1

没企图 2024-12-27 18:55:07

您应该能够简单地使用响应热点操作对象执行您想要的操作:

http://layar.pbworks.com/w/page/28473525/GetPOIs-JSON%20Response#Actions

您可以添加任意数量根据您的喜好进行操作 - 包括网站链接:

"actions": [
     {"activityType": 4, "uri": "http://www.mywebsite.com", "label": "Go To Website"}
]

You should be able to do what you want simply using the Response Hotspot Action Object:

http://layar.pbworks.com/w/page/28473525/GetPOIs-JSON%20Response#Actions

You can add as many actions as you like - including links to websites:

"actions": [
     {"activityType": 4, "uri": "http://www.mywebsite.com", "label": "Go To Website"}
]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文