Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
package com.google.maps.android.compose;
|
||||
|
||||
import com.google.android.gms.maps.GoogleMap;
|
||||
import com.google.android.gms.maps.LocationSource;
|
||||
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$4 implements Function2<MapPropertiesNode, LocationSource, Unit> {
|
||||
final /* synthetic */ GoogleMap $map;
|
||||
|
||||
public MapUpdaterKt$MapUpdater$2$4(GoogleMap googleMap) {
|
||||
this.$map = googleMap;
|
||||
}
|
||||
|
||||
@Override // kotlin.jvm.functions.Function2
|
||||
public /* bridge */ /* synthetic */ Unit invoke(MapPropertiesNode mapPropertiesNode, LocationSource locationSource) {
|
||||
invoke2(mapPropertiesNode, locationSource);
|
||||
return Unit.INSTANCE;
|
||||
}
|
||||
|
||||
/* JADX INFO: renamed from: invoke, reason: avoid collision after fix types in other method */
|
||||
public final void invoke2(MapPropertiesNode set, LocationSource locationSource) {
|
||||
Intrinsics.checkNotNullParameter(set, "$this$set");
|
||||
this.$map.setLocationSource(locationSource);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user