在地图上像pin一样敲诈“swift

时间:2018-04-07 22:58:56

标签: swift google-maps

我在Bing和Google上尝试了上面的搜索查询,但没有接近我的需求。

如果用户使用swift移动,如何实施taxify / Uber之类的Pin放在Google地图中间并获取位置信息?

感谢您的平常支持。

1 个答案:

答案 0 :(得分:0)

您可以将图钉视为google地图中间的任何imageView(在其上方),并在用户拖动地图时获取新的中心位置

func mapView(_ mapView: GMSMapView, didChange position: GMSCameraPosition) {

    print("\(position.target.latitude),\(position.target.longitude)")

}

func mapView(_ mapView: GMSMapView, idleAt position: GMSCameraPosition) {

    print("\(position.target.latitude),\(position.target.longitude)")
}