gpt4 book ai didi

iOS MapKit - 如何将 map 集中在从 View 中的文本字段获得的特定位置?

转载 作者:行者123 更新时间:2023-12-01 18:08:26 27 4
gpt4 key购买 nike

iOS MapKit - 如何将 map 集中在从 View 中的文本字段获得的特定位置?

似乎有大量关于如何将 map 集中在用户当前位置的教程。如何以手动输入的位置为中心?

最佳答案

这是我最近使用的一个示例(在 swift 中),其中我有一个变量 location - 您可以从文本字段中创建,您还需要定义缩放区域的高度和宽度

func centerMapOnLocation(location: CLLocation, regionRadius : CLLocationDistance)
{
let coordinateRegion = MKCoordinateRegionMakeWithDistance(location.coordinate,
latitudinalMeters, longitudinalMeters)
mapView.setRegion(coordinateRegion, animated: true)
}

在我的示例中,用户有一个可配置的选项,可以在最后一个已知位置或当前位置重新打开 map 。

关于iOS MapKit - 如何将 map 集中在从 View 中的文本字段获得的特定位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36624162/

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