gpt4 book ai didi

javascript - 如何在 HTML 内的 iOS 应用程序上打开 Apple map 应用程序

转载 作者:行者123 更新时间:2023-11-30 11:57:23 24 4
gpt4 key购买 nike

现在,我通过 WKWebView 嵌入 HTML。如果用户单击a元素,我想打开Apple Map APP。看起来什么也没发生,只是背景颜色改变了。我的代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
a {
display: block;
font-size: 20px;
width: 200px;
height: 100px;
margin: 100px auto;
text-align: center;
}
</style>
</head>
<body>

<h1>open the apple map</h1>

<a href="maps:ll=38.897096,-77.036545" class="context-block-button map-button" id="map-button-1"><i class="ss-map icon-left"></i><span>Open in map (maps:)</span></a>

</body>
<script src="../js/jquery.min.js"></script>
<script>
$('body').on('click','a',function () {
$('body').css('background-color','blue');
window.location.href = " http://maps.apple.com/?q=Mexican+Restaurant&sll=50.894967,4.341626&z=10&t=s";
})
</script>
</html>

在 safari 中,我复制“http://maps.apple.com/?q=Mexican+Restaurant&sll=50.894967,4.341626&z=10&t=s”。然后 safari 将在 Mac 上打开 Apple App。

我必须使用 Swift4 API 打开 Apple map 应用吗?还有一件事,如果解决方案必须更改 info.plist 或更改应用程序目标设置,感谢您为我编写此内容。

最佳答案

是的,您需要使用Swift API并需要实现WKNavigationDelegate,添加decidePolicyForNavigationAction方法。

检查这个answer来自另一个线程。

关于javascript - 如何在 HTML 内的 iOS 应用程序上打开 Apple map 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47649362/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com