如何将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所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)