在浮动地图视图中单击“导航”图标,即可显示Google地图中两个标记之间的方向

时间:2019-09-19 06:41:28

标签: android ios google-maps flutter

我希望Google地图通过单击右下角的“导航”图标来显示两个标记(标记1和标记2)之间的方向。当前,在单击导航图标时,谷歌地图加载的方向是从当前位置到标记2(当前单击的标记)。

我正在使用google_maps_flutter依赖项来显示地图

enter image description here

1 个答案:

答案 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.';
  }
},