[ios] Fixed bug with endless routing spinner animation.

This commit is contained in:
Timur Bernikowich 2014-11-03 12:00:30 +03:00 committed by Alex Zolotarev
parent 2f01ee0068
commit 9308870292

View file

@ -910,6 +910,12 @@
- (void)tryToBuildRoute
{
if (!GetPlatform().HasRouting())
{
[self showBuyProDialog];
return;
}
[self.routeView updateDistance:nil withMetrics:nil];
[self.containerView.placePage showBuildingRoutingActivity:YES];
GetFramework().BuildRoute([self.containerView.placePage pinPoint]);