如何将 CLLocationCoordinate2D 纬度和经度转换为双倍?

Posted

技术标签:

【中文标题】如何将 CLLocationCoordinate2D 纬度和经度转换为双倍?【英文标题】:How to convert CLLocationCoordinate2D latitude and longtitute to double? 【发布时间】:2017-04-29 15:17:21 【问题描述】:

如何在 Swift 3 中将CLLocationCoordinate2D 纬度和经度转换为Double

【问题讨论】:

无需将坐标.纬度和经度转换为双精度值。纬度和经度已经只有双精度值。您将通过变量赋值,例如 let lati = coordinate.latitude, .. 【参考方案1】:

CLLocationCoordinate2D 的latitudelongitude 实例属性属于CLLocationDegrees 类型,这是typealiasDouble

所以你真的不需要做任何事情:

func printDouble(_ d: Double)  print(d) 

let coords = CLLocationCoordinate2D(latitude: 123.0, longitude: 456.0)
printDouble(coords.latitude) // Works just fine
printDouble(coords.longitude)

【讨论】:

以上是关于如何将 CLLocationCoordinate2D 纬度和经度转换为双倍?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 SwiftUI 中的扩展将 Hashable 协议添加到 CLLocationCoordinate2D

如何在 Objective C 中使用 RestKit 将纬度和经度字段映射到单个 CLLocationCoordinate2D?

将 CLLocation 或 CLLocationCoordinate2D 转换为 CGPoint

如何在 Core Data 中存储 CLLocationCoordinate2D 数组来绘制折线?

如何在Core Data中存储CLLocationCoordinate2D数组来绘制折线?

MKPolygon - 如何确定 CLLocationCoordinate2D 是不是在 CLLocationCoordinate2D 多边形中?