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,59 @@
package com.google.android.gms.maps.internal;
import android.os.IInterface;
import android.os.RemoteException;
import com.google.android.gms.dynamic.IObjectWrapper;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.StreetViewPanoramaCamera;
import com.google.android.gms.maps.model.StreetViewPanoramaLocation;
import com.google.android.gms.maps.model.StreetViewPanoramaOrientation;
import com.google.android.gms.maps.model.StreetViewSource;
import javax.annotation.Nullable;
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
/* JADX INFO: loaded from: classes2.dex */
public interface IStreetViewPanoramaDelegate extends IInterface {
void animateTo(StreetViewPanoramaCamera streetViewPanoramaCamera, long j) throws RemoteException;
void enablePanning(boolean z) throws RemoteException;
void enableStreetNames(boolean z) throws RemoteException;
void enableUserNavigation(boolean z) throws RemoteException;
void enableZoom(boolean z) throws RemoteException;
StreetViewPanoramaCamera getPanoramaCamera() throws RemoteException;
StreetViewPanoramaLocation getStreetViewPanoramaLocation() throws RemoteException;
boolean isPanningGesturesEnabled() throws RemoteException;
boolean isStreetNamesEnabled() throws RemoteException;
boolean isUserNavigationEnabled() throws RemoteException;
boolean isZoomGesturesEnabled() throws RemoteException;
IObjectWrapper orientationToPoint(StreetViewPanoramaOrientation streetViewPanoramaOrientation) throws RemoteException;
StreetViewPanoramaOrientation pointToOrientation(IObjectWrapper iObjectWrapper) throws RemoteException;
void setOnStreetViewPanoramaCameraChangeListener(@Nullable zzbl zzblVar) throws RemoteException;
void setOnStreetViewPanoramaChangeListener(@Nullable zzbn zzbnVar) throws RemoteException;
void setOnStreetViewPanoramaClickListener(@Nullable zzbp zzbpVar) throws RemoteException;
void setOnStreetViewPanoramaLongClickListener(@Nullable zzbr zzbrVar) throws RemoteException;
void setPosition(LatLng latLng) throws RemoteException;
void setPositionWithID(String str) throws RemoteException;
void setPositionWithRadius(LatLng latLng, int i) throws RemoteException;
void setPositionWithRadiusAndSource(LatLng latLng, int i, @Nullable StreetViewSource streetViewSource) throws RemoteException;
void setPositionWithSource(LatLng latLng, @Nullable StreetViewSource streetViewSource) throws RemoteException;
}