blob: 84f6f7ca485f21646272f8c1fce40253431303f6 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#import <Flutter/Flutter.h>
#import <GoogleMaps/GoogleMaps.h>
NS_ASSUME_NONNULL_BEGIN
@interface FLTGoogleMapController (Test)
/**
* Initializes a map controller with a concrete map view.
*
* @param mapView A map view that will be displayed by the controller
* @param viewId A unique identifier for the controller.
* @param args Parameters for initialising the map view.
* @param registrar The plugin registrar passed from Flutter.
*/
- (instancetype)initWithMapView:(GMSMapView *)mapView
viewIdentifier:(int64_t)viewId
arguments:(id _Nullable)args
registrar:(NSObject<FlutterPluginRegistrar> *)registrar;
@end
NS_ASSUME_NONNULL_END