我们应该如何在谷歌地图中放置自定义按钮?

时间:2017-09-22 10:34:26

标签: ios swift google-maps google-maps-api-3 google-direction

通过点击按钮导航到谷歌地图应用程序,并显示从一个位置到另一个位置的路线。这是我在按钮

中写的代码
@IBAction func movetonextclass() {
     if UIApplication.shared.canOpenURL(URL(string: "comgooglemaps://")!) {
        let googleMapUrlString: String = "comgooglemaps://?saddr=&daddr=\(CDouble(reachLat)),\(CDouble(reachLong))&mode=driving"
        UIApplication.shared.openURL(URL(string: googleMapUrlString)!)
    }
    else {
         print("i wont go to google maps app, because in ur device there is no google maps app")
    }   
}

现在正在导航到Google地图应用。

在这里,我想在该屏幕中显示一个自定义按钮。

现在,如果我点击该按钮,我应该导航到我自己的应用程序

我应该如何在谷歌地图屏幕上放一个按钮?任何人都可以帮助我

0 个答案:

没有答案