forked from organicmaps/organicmaps
[MAPSME-2327,MAPSME-2381] [ios] Fixed compass location.
This commit is contained in:
parent
dab404a585
commit
31c5b840d7
3 changed files with 22 additions and 7 deletions
|
@ -5,6 +5,7 @@
|
|||
#import "MWMLocationHelpers.h"
|
||||
#import "MWMLocationManager.h"
|
||||
#import "MWMMapViewControlsManager.h"
|
||||
#import "MWMMapWidgets.h"
|
||||
#import "MWMRouter.h"
|
||||
#import "MWMSearch.h"
|
||||
#import "MapViewController.h"
|
||||
|
@ -323,13 +324,16 @@ BOOL defaultOrientation(CGSize const & size)
|
|||
[self layoutIfNeeded];
|
||||
[self layoutSearch];
|
||||
[UIView animateWithDuration:kDefaultAnimationDuration
|
||||
animations:^{
|
||||
self.searchButtonsView.layer.cornerRadius =
|
||||
(defaultOrientation(self.frame.size) ? kSearchButtonsViewHeightPortrait
|
||||
: kSearchButtonsViewHeightLandscape) /
|
||||
2;
|
||||
[self layoutIfNeeded];
|
||||
}];
|
||||
animations:^{
|
||||
self.searchButtonsView.layer.cornerRadius =
|
||||
(defaultOrientation(self.frame.size) ? kSearchButtonsViewHeightPortrait
|
||||
: kSearchButtonsViewHeightLandscape) /
|
||||
2;
|
||||
[self layoutIfNeeded];
|
||||
}
|
||||
completion:^(BOOL finished) {
|
||||
[[MWMMapWidgets widgetsManager] layoutWidgets];
|
||||
}];
|
||||
}
|
||||
|
||||
- (void)setSearchState:(NavigationSearchState)searchState animated:(BOOL)animated
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
@interface MWMMapWidgets : NSObject
|
||||
|
||||
+ (MWMMapWidgets *)widgetsManager;
|
||||
|
||||
@property (nonatomic) BOOL fullScreen;
|
||||
@property (nonatomic) CGFloat leftBound;
|
||||
@property (nonatomic) CGFloat bottomBound;
|
||||
|
@ -9,4 +11,6 @@
|
|||
- (void)setupWidgets:(Framework::DrapeCreationParams &)p;
|
||||
- (void)resize:(CGSize)size;
|
||||
|
||||
- (void)layoutWidgets;
|
||||
|
||||
@end
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#import "MWMMapWidgets.h"
|
||||
#import "Common.h"
|
||||
#import "EAGLView.h"
|
||||
#import "MWMNavigationDashboardManager.h"
|
||||
#import "MapViewController.h"
|
||||
|
||||
#include "drape_frontend/gui/skin.hpp"
|
||||
#include "std/unique_ptr.hpp"
|
||||
|
@ -16,6 +18,11 @@
|
|||
unique_ptr<gui::Skin> m_skin;
|
||||
}
|
||||
|
||||
+ (MWMMapWidgets *)widgetsManager
|
||||
{
|
||||
return ((EAGLView *)[MapViewController controller].view).widgetsManager;
|
||||
}
|
||||
|
||||
- (void)setupWidgets:(Framework::DrapeCreationParams &)p
|
||||
{
|
||||
self.visualScale = p.m_visualScale;
|
||||
|
|
Loading…
Add table
Reference in a new issue