如何在Flutter Framework上打开IOS Maps

时间:2019-03-27 10:33:51

标签: dart flutter maps

我可以使用flutter框架打开Goog​​le Maps。打开Apple地图我需要做什么?

1 个答案:

答案 0 :(得分:0)

String url = 'https://maps.apple.com/?q=0,0'; // I used 0,0 as latitude and longitude
if (await canLaunch(url)) {
  launch(url);
} else {
  // error in launching map
}

您需要this plugin