initAutomotive method

Future<bool?> initAutomotive({
  1. required String styleUrl,
  2. required String vietMapAPIKey,
})

Initializes the automotive map with the given style URL and VietMap API key. This method should be called before using any map-interacting methods.

Implementation

Future<bool?> initAutomotive(
    {required String styleUrl, required String vietMapAPIKey}) {
  throw UnimplementedError('initAutomotive() has not been implemented.');
}