我在我的 React Native 应用程序中使用谷歌地图意图已经快一年了,传递此网址中的坐标没有任何问题,允许用户在导航模式下打开“谷歌地图”到确切的目的地:
const destination = `${coordinates.latitude},${coordinates.longitude}`;
const url = `https://www.google.com/maps/dir/?api=1&dir_action=navigate&destination=${destination}`;
Linking.canOpenURL(url).then(supported => {
if (!supported) {
console.log('Can\'t handle url: ' + url);
return null
} else {
return Linking.openURL(url);
}
}).catch(err => console.error('An error occurred', err));
但是从上周“12/06/2024”开始,地图以导航模式打开,但加载行程需要很长时间。
您可以在此处找到有关该问题的视频:https://drive.google.com/file/d/1U7l7tK9EzKGd9_nxDZtfpUQEQMwWtko-/view?usp=sharing
请问您是否也遇到同样的问题,或者有什么解决办法吗?
我尝试打开应用程序外部的链接: https://www.google.com/maps/dir/?api=1&dir_action=navigate&destination=${destination}
但给出相同的结果。
我除了立即加载行程之外。
我尝试在网络版和 Android 手机上使用谷歌地图。并且立即为我显示从a点到b点的行程(路线)。