gpt4 book ai didi

Swift Google Maps Center on Marker Click

转载 作者:IT王子 更新时间:2023-10-29 05:53:03 29 4
gpt4 key购买 nike

我正在尝试将 Google map 置于标记的中心并在用户点击标记时缩放。我可以使用点击委托(delegate)在 Android 中执行此操作,但我找不到在 Swift 中执行此操作的方法。

有没有人有任何提示或建议来解决这个问题?

最佳答案

你必须符合 GMSMapViewDelegate 协议(protocol),然后你有下面的功能:

func mapView(mapView: GMSMapView, didTapMarker marker: GMSMarker) -> Bool {

//you can handle zooming and camera update here

}

您可以通过为多个位置创建边界来更新相机,例如:(您也可以为边界提供填充)

let bounds = GMSCoordinateBounds(coordinate: self.userLocation!.coordinate, coordinate: marker.position)
self.mapView.animateWithCameraUpdate(GMSCameraUpdate.fitBounds(bounds, withPadding: 120.0))

你也可以用一个缩放级别的位置更新相机位置,如:

self.mapView?.camera = GMSCameraPosition.cameraWithTarget(marker.position, zoom: 9.0)

关于Swift Google Maps Center on Marker Click,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31845977/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com