You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
626 B
Objective-C
28 lines
626 B
Objective-C
//
|
|
// BMFMapViewController.h
|
|
// flutter_bmfmap
|
|
//
|
|
// Created by zbj on 2020/2/6.
|
|
//
|
|
|
|
#import <Flutter/Flutter.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface BMFMapViewController : NSObject<FlutterPlatformView>
|
|
|
|
- (instancetype)initWithWithFrame:(CGRect)frame
|
|
viewIdentifier:(int64_t)viewId
|
|
arguments:(id _Nullable)args
|
|
binaryMessenger:(NSObject<FlutterBinaryMessenger>*)messenger;
|
|
|
|
@end
|
|
|
|
|
|
@interface FlutterMapViewFactory : NSObject<FlutterPlatformViewFactory>
|
|
|
|
- (instancetype)initWithMessenger:(NSObject<FlutterBinaryMessenger>*)messager;
|
|
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|