H5通过URL Scheme唤醒手机地图APP

1.高德地图

安卓URL Scheme:baidumap://

官方文档:https://lbs.amap.com/api/amap-mobile/guide/android/navigation

IOS URL Scheme:iosamap://

官方文档:https://lbs.amap.com/api/amap-mobile/guide/ios/navi

HarmonyOS NEXT URL Scheme(没测试过是否可用):amapuri://

官方文档:https://lbs.amap.com/api/amap-mobile/guide/ios/navi
使用示例:

`androidamap://route/plan/?sourceApplication=${name}&dname=${address}&dlat=${latitude}&dlon=${longitude}&dev=0`

2.百度地图

安卓和IOS URL Scheme:baidumap://

官方文档:https://lbs.baidu.com/faq/api?title=webapi/uri/andriod
使用示例:

`baidumap://map/direction?destination=${latitude},${longitude}&mode=driving&coord_type=gcj02`

3.腾讯地图

安卓和IOS URL Scheme:qqmap://

官方文档:https://lbs.qq.com/webApi/uriV1/uriGuide/uriOverview
使用示例:

`qqmap://map/routeplan?type=drive&from=我的位置&to=${address}&tocoord=${latitude},${longitude}`