我希望Google地图通过单击右下角的“导航”图标来显示两个标记(标记1和标记2)之间的方向。当前,在单击导航图标时,谷歌地图加载的方向是从当前位置到标记2(当前单击的标记)。
我正在使用google_maps_flutter
依赖项来显示地图
答案 0 :(得分:1)
您必须使用您可能已经在使用的url_launcher
。
onPressed: () async{
String googleUrl = 'http://maps.google.com/maps?saddr=28.6207,77.3639&daddr=28.6057,77.3731';
if (await canLaunch(googleUrl)) {
await launch(googleUrl);
} else {
throw 'Could not open the map.';
}
},