Initial version -- added millennium read funcionality

This commit is contained in:
Pablo
2026-03-09 22:05:28 +01:00
commit 77c2ded482
2770 changed files with 141927 additions and 0 deletions
@@ -0,0 +1,82 @@
package com.google.android.gms.maps;
import android.content.Context;
import android.os.Bundle;
import android.os.StrictMode;
import android.util.AttributeSet;
import android.widget.FrameLayout;
import com.google.android.gms.common.internal.Preconditions;
import com.google.android.gms.dynamic.DeferredLifecycleHelper;
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
/* JADX INFO: loaded from: classes2.dex */
public class StreetViewPanoramaView extends FrameLayout {
private final zzat zza;
public StreetViewPanoramaView(Context context) {
super((Context) Preconditions.checkNotNull(context, "context must not be null"));
this.zza = new zzat(this, context, null);
}
public void getStreetViewPanoramaAsync(OnStreetViewPanoramaReadyCallback onStreetViewPanoramaReadyCallback) {
Preconditions.checkNotNull(onStreetViewPanoramaReadyCallback, "callback must not be null");
Preconditions.checkMainThread("getStreetViewPanoramaAsync() must be called on the main thread");
this.zza.zza(onStreetViewPanoramaReadyCallback);
}
public final void onCreate(Bundle bundle) {
StrictMode.ThreadPolicy threadPolicy = StrictMode.getThreadPolicy();
StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder(threadPolicy).permitAll().build());
try {
this.zza.onCreate(bundle);
if (this.zza.getDelegate() == null) {
DeferredLifecycleHelper.showGooglePlayUnavailableMessage(this);
}
} finally {
StrictMode.setThreadPolicy(threadPolicy);
}
}
public void onDestroy() {
this.zza.onDestroy();
}
public final void onLowMemory() {
this.zza.onLowMemory();
}
public final void onPause() {
this.zza.onPause();
}
public void onResume() {
this.zza.onResume();
}
public final void onSaveInstanceState(Bundle bundle) {
this.zza.onSaveInstanceState(bundle);
}
public void onStart() {
this.zza.onStart();
}
public void onStop() {
this.zza.onStop();
}
public StreetViewPanoramaView(Context context, AttributeSet attributeSet) {
super((Context) Preconditions.checkNotNull(context, "context must not be null"), attributeSet);
this.zza = new zzat(this, context, null);
}
public StreetViewPanoramaView(Context context, AttributeSet attributeSet, int i) {
super((Context) Preconditions.checkNotNull(context, "context must not be null"), attributeSet, i);
this.zza = new zzat(this, context, null);
}
public StreetViewPanoramaView(Context context, StreetViewPanoramaOptions streetViewPanoramaOptions) {
super((Context) Preconditions.checkNotNull(context, "context must not be null"));
this.zza = new zzat(this, context, streetViewPanoramaOptions);
}
}