I want to convert lat lon to CLLocationCoordinate2D
.
self.currentLocation = {.latitude = 0.0, .longitude = 0.0};
This gives me error "Expected expression".
What am I doing wrong?
Use CLLocationCoordinate2DMake(CLLocationDegrees latitude, CLLocationDegrees longitude)
to create the coordinates.