Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
66
iphone/Maps/Classes/MapViewController.h
Normal file
66
iphone/Maps/Classes/MapViewController.h
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
#import "MWMMapDownloaderMode.h"
|
||||
#import "MWMViewController.h"
|
||||
#import "MWMMyPositionMode.h"
|
||||
|
||||
@class MWMMapViewControlsManager;
|
||||
@class EAGLView;
|
||||
@class MWMMapDownloadDialog;
|
||||
@class BookmarksCoordinator;
|
||||
@class SearchOnMapManager;
|
||||
@class SideButtonsArea;
|
||||
@class WidgetsArea;
|
||||
@class TrafficButtonArea;
|
||||
@class PlacePageArea;
|
||||
|
||||
@protocol MWMLocationModeListener;
|
||||
|
||||
@interface MapViewController : MWMViewController
|
||||
|
||||
+ (MapViewController *_Nullable)sharedController;
|
||||
- (void)addListener:(id<MWMLocationModeListener>_Nonnull)listener;
|
||||
- (void)removeListener:(id<MWMLocationModeListener>_Nonnull)listener;
|
||||
|
||||
// called when app is terminated by system
|
||||
- (void)onTerminate;
|
||||
- (void)onGetFocus:(BOOL)isOnFocus;
|
||||
|
||||
- (void)updateStatusBarStyle;
|
||||
|
||||
- (void)performAction:(NSString *_Nonnull)action;
|
||||
|
||||
- (void)openMenu;
|
||||
- (void)openSettings;
|
||||
- (void)openAbout;
|
||||
- (void)openMapsDownloader:(MWMMapDownloaderMode)mode;
|
||||
- (void)openEditor;
|
||||
- (void)openBookmarkEditor;
|
||||
- (void)openFullPlaceDescriptionWithHtml:(NSString *_Nonnull)htmlString;
|
||||
- (void)openDrivingOptions;
|
||||
- (void)showTrackRecordingPlacePage;
|
||||
|
||||
- (void)setPlacePageTopBound:(CGFloat)bound duration:(double)duration;
|
||||
|
||||
+ (void)setViewport:(double)lat lon:(double)lon zoomLevel:(int)zoomlevel;
|
||||
|
||||
- (void)initialize;
|
||||
- (void)enableCarPlayRepresentation;
|
||||
- (void)disableCarPlayRepresentation;
|
||||
|
||||
- (void)dismissPlacePage;
|
||||
|
||||
@property(nonatomic, readonly) MWMMapViewControlsManager * _Nonnull controlsManager;
|
||||
@property(nonatomic, readonly) MWMMapDownloadDialog * _Nonnull downloadDialog;
|
||||
@property(nonatomic, readonly) BookmarksCoordinator * _Nonnull bookmarksCoordinator;
|
||||
@property(nonatomic, readonly) SearchOnMapManager * _Nonnull searchManager;
|
||||
|
||||
@property(nonatomic) MWMMyPositionMode currentPositionMode;
|
||||
@property(strong, nonatomic) IBOutlet EAGLView * _Nonnull mapView;
|
||||
@property(strong, nonatomic) IBOutlet UIView * _Nonnull controlsView;
|
||||
@property(nonatomic) UIView * _Nonnull searchContainer;
|
||||
|
||||
@property (weak, nonatomic) IBOutlet SideButtonsArea * sideButtonsArea;
|
||||
@property (weak, nonatomic) IBOutlet WidgetsArea * widgetsArea;
|
||||
@property (weak, nonatomic) IBOutlet TrafficButtonArea * trafficButtonArea;
|
||||
@property (weak, nonatomic) IBOutlet PlacePageArea * placePageArea;
|
||||
|
||||
@end
|
||||
Loading…
Add table
Add a link
Reference in a new issue