I am trying to get user current location latitude and longitude not degrees.
let currentLocation = CLLocation(latitude: self.mapView.centerCoordinate.latitude, longitude: self.mapView.centerCoordinate.longitude)
annotationManager.originLocation = currentLocation
print("current location coordinate :::\(CLLocationCoordinate2D(latitude: currentLocation.coordinate.latitude, longitude: currentLocation.coordinate.longitude))")
I am trying to get user current location latitude and longitude not degrees.