forked from organicmaps/organicmaps
[ios] PP arrow compass fix
This commit is contained in:
parent
806ae8843f
commit
faba78e0c4
3 changed files with 8 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -40,5 +40,6 @@
|
|||
|
||||
- (bool)lastLocationIsValid;
|
||||
- (BOOL)enabledOnMap;
|
||||
- (void)triggerCompass;
|
||||
|
||||
@end
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue