将 CLLocation 转换为 CLLocationDegrees
如何将 CLLocation 转换为 CLLocationDegrees,以便创建 CLLocationCooperative2D 结构?
How can I convert CLLocation to CLLocationDegrees, so that I could create CLLocationCoordinate2D structure?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需直接从 CLLocation 的
coordinate
属性获取CLLocationCooperative2D
即可。参考文档
Just get the
CLLocationCoordinate2D
directly from thecoordinate
property of CLLocation.Reference Docs
CLLocation.coordinate 属性将为您返回 CLLocationCooperative2D。无需进行任何转换。
CLLocation.coordinate property will return CLLocationCoordinate2D for you. No need to do any conversions.