[ios] PP arrow compass fix

This commit is contained in:
Igor Khmurets 2014-08-25 18:51:45 +03:00 committed by Alex Zolotarev
parent 806ae8843f
commit faba78e0c4
3 changed files with 8 additions and 0 deletions

View file

@ -203,6 +203,8 @@ typedef NS_ENUM(NSUInteger, CellRow)
cell.selectedColorView.alpha = [self isBookmark] ? 1 : 0;
cell.delegate = self;
cell.myPositionMode = [self isMyPosition];
[[MapsAppDelegate theApp].m_locationManager triggerCompass];
return cell;
}
else if (row == CellRowSet)

View file

@ -40,5 +40,6 @@
- (bool)lastLocationIsValid;
- (BOOL)enabledOnMap;
- (void)triggerCompass;
@end

View file

@ -129,6 +129,11 @@
info.m_speed = location.speed;
}
- (void)triggerCompass
{
[self locationManager:m_locationManager didUpdateHeading:m_locationManager.heading];
}
- (void)locationManager:(CLLocationManager *)manager didUpdateHeading:(CLHeading *)newHeading
{
// Stop passing driving course if last time stamp for GPS location is later than 20 seconds.