forked from organicmaps/organicmaps
[ios] Draw altitude and speed in the My Position label
This commit is contained in:
parent
66a70d2a0a
commit
0f3a6b16df
1 changed files with 7 additions and 1 deletions
|
@ -124,6 +124,9 @@ typedef NS_ENUM(NSUInteger, CellRow)
|
|||
}
|
||||
PlacePageInfoCell * cell = (PlacePageInfoCell *)[self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:ROW_COMMON inSection:0]];
|
||||
[cell updateDistance];
|
||||
|
||||
if ([self isMarkOfType:UserMark::MY_POSITION])
|
||||
self.typeLabel.text = [[MapsAppDelegate theApp].m_locationManager formatSpeedAndAltitude];
|
||||
}
|
||||
|
||||
- (void)onCompassUpdate:(location::CompassInfo const &)info
|
||||
|
@ -229,7 +232,10 @@ typedef NS_ENUM(NSUInteger, CellRow)
|
|||
[self.titleLabel sizeToFit];
|
||||
self.titleLabel.origin = CGPointMake(23, 29);
|
||||
|
||||
self.typeLabel.text = self.types;
|
||||
if ([self isMarkOfType:UserMark::MY_POSITION])
|
||||
self.typeLabel.text = [[MapsAppDelegate theApp].m_locationManager formatSpeedAndAltitude];
|
||||
else
|
||||
self.typeLabel.text = self.types;
|
||||
self.typeLabel.width = [self typesWidth];
|
||||
[self.typeLabel sizeToFit];
|
||||
self.typeLabel.origin = CGPointMake(self.titleLabel.minX + 1, self.titleLabel.maxY + 1);
|
||||
|
|
Loading…
Add table
Reference in a new issue