updateMapConfiguration method
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);
}