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,219 @@
package com.google.android.gms.maps.model;
import android.os.RemoteException;
import com.google.android.gms.common.internal.Preconditions;
import com.google.android.gms.dynamic.ObjectWrapper;
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
/* JADX INFO: loaded from: classes2.dex */
public final class GroundOverlay {
private final com.google.android.gms.internal.maps.zzv zza;
public GroundOverlay(com.google.android.gms.internal.maps.zzv zzvVar) {
this.zza = (com.google.android.gms.internal.maps.zzv) Preconditions.checkNotNull(zzvVar);
}
public boolean equals(Object obj) {
if (!(obj instanceof GroundOverlay)) {
return false;
}
try {
return this.zza.zzz(((GroundOverlay) obj).zza);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public float getBearing() {
try {
return this.zza.zzd();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public LatLngBounds getBounds() {
try {
return this.zza.zzl();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public float getHeight() {
try {
return this.zza.zze();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public String getId() {
try {
return this.zza.zzm();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public LatLng getPosition() {
try {
return this.zza.zzk();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public Object getTag() {
try {
return ObjectWrapper.unwrap(this.zza.zzj());
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public float getTransparency() {
try {
return this.zza.zzf();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public float getWidth() {
try {
return this.zza.zzg();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public float getZIndex() {
try {
return this.zza.zzh();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public int hashCode() {
try {
return this.zza.zzi();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public boolean isClickable() {
try {
return this.zza.zzA();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public boolean isVisible() {
try {
return this.zza.zzB();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setImage(BitmapDescriptor bitmapDescriptor) {
Preconditions.checkNotNull(bitmapDescriptor, "imageDescriptor must not be null");
try {
this.zza.zzs(bitmapDescriptor.zza());
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void remove() {
try {
this.zza.zzn();
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setBearing(float f) {
try {
this.zza.zzo(f);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setClickable(boolean z) {
try {
this.zza.zzp(z);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setDimensions(float f) {
try {
this.zza.zzq(f);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setPosition(LatLng latLng) {
try {
this.zza.zzt(latLng);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setPositionFromBounds(LatLngBounds latLngBounds) {
try {
this.zza.zzu(latLngBounds);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setTag(Object obj) {
try {
this.zza.zzv(ObjectWrapper.wrap(obj));
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setTransparency(float f) {
try {
this.zza.zzw(f);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setVisible(boolean z) {
try {
this.zza.zzx(z);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setZIndex(float f) {
try {
this.zza.zzy(f);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
public void setDimensions(float f, float f2) {
try {
this.zza.zzr(f, f2);
} catch (RemoteException e) {
throw new RuntimeRemoteException(e);
}
}
}