31 lines
1.1 KiB
Java
31 lines
1.1 KiB
Java
package com.google.maps.android.compose;
|
|
|
|
import com.google.android.gms.maps.GoogleMap;
|
|
import kotlin.Metadata;
|
|
import kotlin.Unit;
|
|
import kotlin.jvm.functions.Function2;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* JADX INFO: compiled from: MapUpdater.kt */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
@Metadata(k = 3, mv = {2, 0, 0}, xi = 176)
|
|
public final class MapUpdaterKt$MapUpdater$2$11 implements Function2<MapPropertiesNode, MapType, Unit> {
|
|
final /* synthetic */ GoogleMap $map;
|
|
|
|
public MapUpdaterKt$MapUpdater$2$11(GoogleMap googleMap) {
|
|
this.$map = googleMap;
|
|
}
|
|
|
|
@Override // kotlin.jvm.functions.Function2
|
|
public /* bridge */ /* synthetic */ Unit invoke(MapPropertiesNode mapPropertiesNode, MapType mapType) {
|
|
invoke2(mapPropertiesNode, mapType);
|
|
return Unit.INSTANCE;
|
|
}
|
|
|
|
/* JADX INFO: renamed from: invoke, reason: avoid collision after fix types in other method */
|
|
public final void invoke2(MapPropertiesNode set, MapType it) {
|
|
Intrinsics.checkNotNullParameter(set, "$this$set");
|
|
Intrinsics.checkNotNullParameter(it, "it");
|
|
this.$map.setMapType(it.getValue());
|
|
}
|
|
} |