在目标C(我没有经验),您可以初始化一个具有纬度和经度的CLLocation对象,如下所示:
CLLocation *myLocation = [[CLLocation alloc] initWithLatitude:your_latitiude_value longitude:your_longitude_value];
但是我怎么在Swift呢?
我试过这个,
let loc_coords = CLLocationCoordinate2D(latitude: your_latitiude_value,longitude: your_longitude_value) let loc = CLLocation().coordinate(loc_coords)
但是我收到这个错误:
无法使用“(CLLocationCoordiate2D)”类型的参数列表调用“坐标”
我需要它作为一个CLLocation对象,因为我想在locationManager中使用distanceFromLocation方法.
希望你能帮忙,谢谢!
我没有靠近我的Mac来测试它,但以下内容应该是有效的.只需将您的lat和lon值传递给CLLocaion初始化器,就像这样:
原文链接:/swift/319662.htmllet myLocation = CLLocation(latitude: your_latitiude_value,longitude: your_longitude_value)
作为参考,您可以查看documentation