amap_map/example/ios/Runner/AppDelegate.m

16 lines
506 B
Mathematica
Raw Normal View History

2023-12-22 21:23:24 +08:00
#import "AppDelegate.h"
#import "GeneratedPluginRegistrant.h"
#import <AMapFoundationKit/AMapServices.h>
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[GeneratedPluginRegistrant registerWithRegistry:self];
// AMapkey
[AMapServices sharedServices].apiKey = @"4dfdec97b7bf0b8c13e94777103015a9";
return [super application:application didFinishLaunchingWithOptions:launchOptions];
}
@end