ios – 将CLLocationCoordinate2D放入Swift的CLLocation

ios – 将CLLocationCoordinate2D放入Swift的CLLocation,第1张

概述我有一个我想要调用的方法,当我回到地图的中心,它是在CLLocationCoordinate2D类型. 如何将CLLocationCoordinate2D的结果放入CLLocation? 弄清楚了. 当mapView更改区域时,从CLLocationCoordinate2D获取Lat和Lon,并创建一个带有lat和lon的CLLocation变量. func mapView(mapView: MK 我有一个我想要调用的方法,当我回到地图的中心,它是在CLLocationCoordinate2D类型.

如何将CLLocationCoordinate2D的结果放入CLLocation?

解决方法 弄清楚了.

当mapVIEw更改区域时,从CLLocationCoordinate2D获取Lat和Lon,并创建一个带有lat和lon的CLLocation变量.

func mapVIEw(mapVIEw: MKMapVIEw!,regionDIDChangeAnimated animated: Bool){    var centre = mapVIEw.centerCoordinate as CLLocationCoordinate2D    var getLat: CLLocationdegrees = centre.latitude    var getLon: CLLocationdegrees = centre.longitude    var getMovedMapCenter: CLLocation =  CLLocation(latitude: getLat,longitude: getLon)    self.lastLocation = getMovedMapCenter    self.fetchCafesAroundLocation(getMovedMapCenter)}
总结

以上是内存溢出为你收集整理的ios – 将CLLocationCoordinate2D放入Swift的CLLocation全部内容,希望文章能够帮你解决ios – 将CLLocationCoordinate2D放入Swift的CLLocation所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1112058.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存