// called for iOS6 and later
 public override void LocationsUpdated(CLLocationManager manager, CLLocation[] locations)
 {
     MainViewController.UpdateLocation(ms, locations [locations.Length - 1]);
 }
 public override void UpdatedLocation(CLLocationManager manager, CLLocation newLocation, CLLocation oldLocation)
 {
     MainViewController.UpdateLocation(ms, newLocation);
 }