gpt4 book ai didi

ios - 在谷歌地图可见区域拟合两个地理位置点

转载 作者:行者123 更新时间:2023-11-28 14:29:59 26 4
gpt4 key购买 nike

我试图在谷歌地图可见区域中放置两个地理定位点,但它不适合。我使用下面的代码来实现这一点

let bounds = GMSCoordinateBounds(coordinate: source, coordinate: destination)
self.mapView.animate(with: GMSCameraUpdate.fit(bounds, withPadding: 10))

/image/8AZa1.png

最佳答案

您可以为此使用 includeCoordinate。它将适合边界内的所有坐标。

var bounds = GMSCoordinateBounds()
bounds = bounds.includingCoordinate(source)
bounds = bounds.includingCoordinate(destination)
self.mapView.animate(with: GMSCameraUpdate.fit(bounds, withPadding: 10.0))

已更新!

let bounds = GMSCoordinateBounds(coordinate: source, coordinate: destination)
self.mapView.animate(with: GMSCameraUpdate.fit(bounds, withPadding: 100))

mapView.padding = UIEdgeInsets(top: 0, left: 0, bottom: self.bottomView.height, right: 0)

关于ios - 在谷歌地图可见区域拟合两个地理位置点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51331868/

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