gpt4 book ai didi

javascript - 如何检查网络应用程序是否支持 google.navigation intent/url 方案?

转载 作者:太空宇宙 更新时间:2023-11-03 11:21:20 25 4
gpt4 key购买 nike

我想知道,如果使用 javascript,是否是这样的:

location = "google.navigation:q="+myDestAddress;

在实际调用它之前得到支持,如果它没有恢复到普通的旧谷歌地图 url:

location = "http://maps.google.com/maps?saddr="+myStartAddress+"&daddr="+myDestAddress;

注意:我已经使用用户代理检查该设备是否是安卓设备,但这还不够,据我所知,“google.navigation” Intent 仅在美国受支持,并且仅在某些国家/地区受支持设备/操作系统版本。

谢谢!

最佳答案

我认为您正在寻找:

if(typeof google == "undefined" || typeof google.navigation == "undefined") {
location = "http://maps.google.com/maps?saddr="+myStartAddress+"&daddr="+myDestAddress;
else {
location = "google.navigation:q="+myDestAddress;
}

关于javascript - 如何检查网络应用程序是否支持 google.navigation intent/url 方案?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7710244/

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