updateMapConfiguration method

  1. @override
Future<void> updateMapConfiguration(
  1. MapConfiguration update, {
  2. required int mapId,
})

Updates the options of a given mapId.

This attempts to merge the new optionsUpdate passed in, with the previous options passed to the map (in other updates, or when creating it).

Implementation

@override
Future<void> updateMapConfiguration(
  MapConfiguration update, {
  required int mapId,
}) async {
  _map(mapId).updateMapConfiguration(update);
}