gpt4 book ai didi

ios - 如何在 iOS 中使用谷歌地图创建自定义标记 View

转载 作者:行者123 更新时间:2023-11-30 11:20:36 27 4
gpt4 key购买 nike

我想在GoogleMap上创建这个customMarkerView(带有撒哈拉之星酒店和Marine Drive的 View ),并且应该能够在不点击 map 的情况下看到这两个 View 。

推荐

swift4

就像uber一样,

检查引用图像。

enter image description here

最佳答案

您可以使用GMSMarker()在 map 中添加两个MarkerViews

将它们放入数组然后您可以使用GMSColinedBounds来聚焦 map 以显示所有标记。下面的代码展示了如何聚焦 map 。

    var bounds = GMSCoordinateBounds()
for marker in yourArrayOfMarkers
{
bounds = bounds.includingCoordinate(marker.position)
}
let update = GMSCameraUpdate.fit(bounds, withPadding: 60)
mapView.animate(with: update)

关于ios - 如何在 iOS 中使用谷歌地图创建自定义标记 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51304765/

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