gpt4 book ai didi

ios - 如何在 iOs 的 mapview 上显示单个位置?

转载 作者:搜寻专家 更新时间:2023-11-01 06:18:48 24 4
gpt4 key购买 nike

如何在 mapview 上显示带有经度和纬度坐标的单个位置(不是我当前的位置!)?

我只想显示具有这些随机坐标的单个位置 - 当这些坐标发生变化时,必须删除 map View 上的旧位置并用新坐标替换?我该怎么做?

最佳答案

添加注释:

let annotation = MKPointAnnotation()
annotation.title = title
annotation.coordinate = coordinate
mapView.addAnnotation(annotation)

然后您可以使用 removeAnnotation 删除它并添加一个新的注释,或者您可以将其移动到一个新坐标的动画:

UIView.animateWithDuration(1.0) {
annotation.coordinate = newCoordinate
}

NY to LA

关于ios - 如何在 iOs 的 mapview 上显示单个位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38424275/

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