getMapStyle method

  1. @override
Future<MPMapStyle?> getMapStyle()
override

Implementation

@override
Future<MPMapStyle?> getMapStyle() async {
  final mapStyleData =
      await mapControlMethodChannel.invokeMethod("MPC_getMapStyle");
  return MPMapStyle.fromJson(mapStyleData);
}