forked from organicmaps/organicmaps
[ios] Fixed crash.
This commit is contained in:
parent
7a0edf979d
commit
898bfbf455
1 changed files with 3 additions and 3 deletions
|
@ -192,26 +192,26 @@ void logSponsoredEvent(MWMPlacePageData * data, NSString * eventName)
|
|||
{
|
||||
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatBuildRoute)
|
||||
withParameters:@{kStatValue : kStatSource}];
|
||||
[self close];
|
||||
[[MWMRouter router] buildFromPoint:self.target bestRouter:YES];
|
||||
[self close];
|
||||
}
|
||||
|
||||
- (void)routeTo
|
||||
{
|
||||
[Statistics logEvent:kStatEventName(kStatPlacePage, kStatBuildRoute)
|
||||
withParameters:@{kStatValue : kStatDestination}];
|
||||
[self close];
|
||||
[[MWMRouter router] buildToPoint:self.target bestRouter:YES];
|
||||
[self close];
|
||||
}
|
||||
|
||||
- (void)taxiTo
|
||||
{
|
||||
[Statistics logEvent:kStatPlacePageTaxiClick
|
||||
withParameters:@{kStatProvider : kStatUber, kStatTags : self.data.statisticsTags}];
|
||||
[self close];
|
||||
auto router = [MWMRouter router];
|
||||
router.type = MWMRouterTypeTaxi;
|
||||
[router buildToPoint:self.target bestRouter:NO];
|
||||
[self close];
|
||||
}
|
||||
|
||||
- (MWMRoutePoint *)target
|
||||
|
|
Loading…
Add table
Reference in a new issue