1

Is it possible to get altitude from MKUserLocation in IOS MKMapKit?

Specifically I'm trying to get altitude within the MKMapViewDelegate's callback "didUpdateUserLocation" which provides an MKUserLocation object?

If not should I really be using CLLocationManager with it's startUpdatingLocation() method to capture location & altitude changes and scrap the use of mapview's MKMapViewDelegate's callback "didUpdateUserLocation"???

Greg
  • 34,042
  • 79
  • 253
  • 454

1 Answers1

1

missed it:

MKUserLocation.location.altitude property

Greg
  • 34,042
  • 79
  • 253
  • 454