forked from organicmaps/organicmaps
[iOS] PP crash fix in debug
This commit is contained in:
parent
522a641aa2
commit
39954e3a0a
1 changed files with 4 additions and 7 deletions
|
@ -83,7 +83,6 @@ class PlacePageCommonLayout: NSObject, IPlacePageLayout {
|
|||
let vc = storyboard.instantiateViewController(ofType: TaxiViewController.self)
|
||||
vc.taxiProvider = placePageData.taxiProvider
|
||||
vc.delegate = interactor
|
||||
vc.view.isHidden = true
|
||||
return vc
|
||||
} ()
|
||||
|
||||
|
@ -198,8 +197,10 @@ class PlacePageCommonLayout: NSObject, IPlacePageLayout {
|
|||
viewControllers.append(infoViewController)
|
||||
}
|
||||
|
||||
if placePageData.taxiProvider != .none {
|
||||
viewControllers.append(taxiViewController)
|
||||
if placePageData.taxiProvider != .none &&
|
||||
!LocationManager.isLocationProhibited() &&
|
||||
FrameworkHelper.isNetworkConnected() {
|
||||
viewControllers.append(taxiViewController)
|
||||
}
|
||||
|
||||
if placePageData.previewData.showUgc {
|
||||
|
@ -240,10 +241,6 @@ class PlacePageCommonLayout: NSObject, IPlacePageLayout {
|
|||
onHeadingUpdate(lastHeading)
|
||||
}
|
||||
|
||||
if !LocationManager.isLocationProhibited() && FrameworkHelper.isNetworkConnected() {
|
||||
taxiViewController.view.isHidden = false
|
||||
}
|
||||
|
||||
placePageData.onMapNodeStatusUpdate = { [weak self] in
|
||||
guard let self = self else { return }
|
||||
self.actionBarViewController.updateDownloadButtonState(self.placePageData.mapNodeAttributes!.nodeStatus)
|
||||
|
|
Loading…
Add table
Reference in a new issue