mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-26 07:43:36 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
20 lines
486 B
Plaintext
20 lines
486 B
Plaintext
#import "MWMNoMapsViewController.h"
|
|
#import "MWMMapDownloaderMode.h"
|
|
#import "MWMMapViewControlsManager.h"
|
|
#import "SwiftBridge.h"
|
|
|
|
@implementation MWMNoMapsViewController
|
|
|
|
+ (MWMNoMapsViewController *)controller
|
|
{
|
|
auto storyboard = [UIStoryboard instance:MWMStoryboardMain];
|
|
return [storyboard instantiateViewControllerWithIdentifier:[self className]];
|
|
}
|
|
|
|
- (IBAction)downloadMaps
|
|
{
|
|
[[MWMMapViewControlsManager manager] actionDownloadMaps:MWMMapDownloaderModeAvailable];
|
|
}
|
|
|
|
@end
|