forked from organicmaps/organicmaps
[fix] [ios] Diabled navigation toast view on no location.
This commit is contained in:
parent
3c35386493
commit
d4edcee341
1 changed files with 9 additions and 2 deletions
|
@ -121,8 +121,15 @@ BOOL defaultOrientation(CGSize const & size)
|
|||
{
|
||||
if (![MWMRouter startPoint])
|
||||
{
|
||||
[self.toastView configWithText:L(@"planning_route_need_start") withActionButton:YES];
|
||||
[self setToastViewHidden:NO];
|
||||
if ([MWMLocationManager lastLocation])
|
||||
{
|
||||
[self.toastView configWithText:L(@"planning_route_need_start") withActionButton:YES];
|
||||
[self setToastViewHidden:NO];
|
||||
}
|
||||
else
|
||||
{
|
||||
[self setToastViewHidden:YES];
|
||||
}
|
||||
}
|
||||
else if (![MWMRouter finishPoint])
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue