【发布时间】:2016-03-15 12:08:35
【问题描述】:
我在网页中有这个链接:
https://www.google.com/maps?saddr=Current+Location&daddr=-27.360198,153.017331
它在桌面上运行良好,但在移动设备上,我被重定向到谷歌地图应用程序并显示“不支持的链接”
有什么想法吗?
【问题讨论】:
标签: ios mobile browser maps direction
我在网页中有这个链接:
https://www.google.com/maps?saddr=Current+Location&daddr=-27.360198,153.017331
它在桌面上运行良好,但在移动设备上,我被重定向到谷歌地图应用程序并显示“不支持的链接”
有什么想法吗?
【问题讨论】:
标签: ios mobile browser maps direction
我在 Android 上遇到了同样的问题,我从这个链接切换解决了它:
("https://www.google.com/maps?daddr="+address, _blank);
到这个:
("https://maps.google.com/maps?daddr="+address, _blank);
【讨论】: