Primer paso de la investigacion. Se aportan el .apk, las carpetas con el apk extraido y el apk descompilado. El archivo API_DOCUMENTATION.md es un archivo donde se anotaran los descubrimientos del funcionamiento de la API, y los .py son scripts para probar la funcionalidad de la API con los métodos que vayamos encontrando. Finalmente, los archivos .js son scripts de Frida para extraer informacion de la APP durante la ejecucion.
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
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.CameraPosition;
|
||||
import com.google.android.gms.maps.model.LatLng;
|
||||
import com.google.android.gms.maps.model.LatLngBounds;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface ICameraUpdateFactoryDelegate extends IInterface {
|
||||
IObjectWrapper newCameraPosition(CameraPosition cameraPosition) throws RemoteException;
|
||||
|
||||
IObjectWrapper newLatLng(LatLng latLng) throws RemoteException;
|
||||
|
||||
IObjectWrapper newLatLngBounds(LatLngBounds latLngBounds, int i) throws RemoteException;
|
||||
|
||||
IObjectWrapper newLatLngBoundsWithSize(LatLngBounds latLngBounds, int i, int i4, int i5) throws RemoteException;
|
||||
|
||||
IObjectWrapper newLatLngZoom(LatLng latLng, float f2) throws RemoteException;
|
||||
|
||||
IObjectWrapper scrollBy(float f2, float f4) throws RemoteException;
|
||||
|
||||
IObjectWrapper zoomBy(float f2) throws RemoteException;
|
||||
|
||||
IObjectWrapper zoomByWithFocus(float f2, int i, int i4) throws RemoteException;
|
||||
|
||||
IObjectWrapper zoomIn() throws RemoteException;
|
||||
|
||||
IObjectWrapper zoomOut() throws RemoteException;
|
||||
|
||||
IObjectWrapper zoomTo(float f2) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,177 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.location.Location;
|
||||
import android.os.Bundle;
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import com.google.android.gms.maps.model.CameraPosition;
|
||||
import com.google.android.gms.maps.model.CircleOptions;
|
||||
import com.google.android.gms.maps.model.GroundOverlayOptions;
|
||||
import com.google.android.gms.maps.model.LatLngBounds;
|
||||
import com.google.android.gms.maps.model.MapStyleOptions;
|
||||
import com.google.android.gms.maps.model.MarkerOptions;
|
||||
import com.google.android.gms.maps.model.PolygonOptions;
|
||||
import com.google.android.gms.maps.model.PolylineOptions;
|
||||
import com.google.android.gms.maps.model.TileOverlayOptions;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface IGoogleMapDelegate extends IInterface {
|
||||
com.google.android.gms.internal.maps.zzl addCircle(CircleOptions circleOptions) throws RemoteException;
|
||||
|
||||
com.google.android.gms.internal.maps.zzr addGroundOverlay(GroundOverlayOptions groundOverlayOptions) throws RemoteException;
|
||||
|
||||
com.google.android.gms.internal.maps.zzad addMarker(MarkerOptions markerOptions) throws RemoteException;
|
||||
|
||||
void addOnMapCapabilitiesChangedListener(zzal zzalVar) throws RemoteException;
|
||||
|
||||
com.google.android.gms.internal.maps.zzag addPolygon(PolygonOptions polygonOptions) throws RemoteException;
|
||||
|
||||
com.google.android.gms.internal.maps.zzaj addPolyline(PolylineOptions polylineOptions) throws RemoteException;
|
||||
|
||||
com.google.android.gms.internal.maps.zzam addTileOverlay(TileOverlayOptions tileOverlayOptions) throws RemoteException;
|
||||
|
||||
void animateCamera(IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
|
||||
void animateCameraWithCallback(IObjectWrapper iObjectWrapper, zzd zzdVar) throws RemoteException;
|
||||
|
||||
void animateCameraWithDurationAndCallback(IObjectWrapper iObjectWrapper, int i, zzd zzdVar) throws RemoteException;
|
||||
|
||||
void clear() throws RemoteException;
|
||||
|
||||
CameraPosition getCameraPosition() throws RemoteException;
|
||||
|
||||
com.google.android.gms.internal.maps.zzo getFeatureLayer(com.google.android.gms.maps.model.zzd zzdVar) throws RemoteException;
|
||||
|
||||
com.google.android.gms.internal.maps.zzu getFocusedBuilding() throws RemoteException;
|
||||
|
||||
void getMapAsync(zzat zzatVar) throws RemoteException;
|
||||
|
||||
com.google.android.gms.internal.maps.zzaa getMapCapabilities() throws RemoteException;
|
||||
|
||||
int getMapType() throws RemoteException;
|
||||
|
||||
float getMaxZoomLevel() throws RemoteException;
|
||||
|
||||
float getMinZoomLevel() throws RemoteException;
|
||||
|
||||
Location getMyLocation() throws RemoteException;
|
||||
|
||||
IProjectionDelegate getProjection() throws RemoteException;
|
||||
|
||||
IUiSettingsDelegate getUiSettings() throws RemoteException;
|
||||
|
||||
boolean isBuildingsEnabled() throws RemoteException;
|
||||
|
||||
boolean isIndoorEnabled() throws RemoteException;
|
||||
|
||||
boolean isMyLocationEnabled() throws RemoteException;
|
||||
|
||||
boolean isTrafficEnabled() throws RemoteException;
|
||||
|
||||
void moveCamera(IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
|
||||
void onCreate(Bundle bundle) throws RemoteException;
|
||||
|
||||
void onDestroy() throws RemoteException;
|
||||
|
||||
void onEnterAmbient(Bundle bundle) throws RemoteException;
|
||||
|
||||
void onExitAmbient() throws RemoteException;
|
||||
|
||||
void onLowMemory() throws RemoteException;
|
||||
|
||||
void onPause() throws RemoteException;
|
||||
|
||||
void onResume() throws RemoteException;
|
||||
|
||||
void onSaveInstanceState(Bundle bundle) throws RemoteException;
|
||||
|
||||
void onStart() throws RemoteException;
|
||||
|
||||
void onStop() throws RemoteException;
|
||||
|
||||
void removeOnMapCapabilitiesChangedListener(zzal zzalVar) throws RemoteException;
|
||||
|
||||
void resetMinMaxZoomPreference() throws RemoteException;
|
||||
|
||||
void setBuildingsEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void setContentDescription(String str) throws RemoteException;
|
||||
|
||||
boolean setIndoorEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void setInfoWindowAdapter(zzi zziVar) throws RemoteException;
|
||||
|
||||
void setLatLngBoundsForCameraTarget(LatLngBounds latLngBounds) throws RemoteException;
|
||||
|
||||
void setLocationSource(ILocationSourceDelegate iLocationSourceDelegate) throws RemoteException;
|
||||
|
||||
boolean setMapStyle(MapStyleOptions mapStyleOptions) throws RemoteException;
|
||||
|
||||
void setMapType(int i) throws RemoteException;
|
||||
|
||||
void setMaxZoomPreference(float f2) throws RemoteException;
|
||||
|
||||
void setMinZoomPreference(float f2) throws RemoteException;
|
||||
|
||||
void setMyLocationEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void setOnCameraChangeListener(zzn zznVar) throws RemoteException;
|
||||
|
||||
void setOnCameraIdleListener(zzp zzpVar) throws RemoteException;
|
||||
|
||||
void setOnCameraMoveCanceledListener(zzr zzrVar) throws RemoteException;
|
||||
|
||||
void setOnCameraMoveListener(zzt zztVar) throws RemoteException;
|
||||
|
||||
void setOnCameraMoveStartedListener(zzv zzvVar) throws RemoteException;
|
||||
|
||||
void setOnCircleClickListener(zzx zzxVar) throws RemoteException;
|
||||
|
||||
void setOnGroundOverlayClickListener(zzz zzzVar) throws RemoteException;
|
||||
|
||||
void setOnIndoorStateChangeListener(zzab zzabVar) throws RemoteException;
|
||||
|
||||
void setOnInfoWindowClickListener(zzad zzadVar) throws RemoteException;
|
||||
|
||||
void setOnInfoWindowCloseListener(zzaf zzafVar) throws RemoteException;
|
||||
|
||||
void setOnInfoWindowLongClickListener(zzah zzahVar) throws RemoteException;
|
||||
|
||||
void setOnMapClickListener(zzan zzanVar) throws RemoteException;
|
||||
|
||||
void setOnMapLoadedCallback(zzap zzapVar) throws RemoteException;
|
||||
|
||||
void setOnMapLongClickListener(zzar zzarVar) throws RemoteException;
|
||||
|
||||
void setOnMarkerClickListener(zzav zzavVar) throws RemoteException;
|
||||
|
||||
void setOnMarkerDragListener(zzax zzaxVar) throws RemoteException;
|
||||
|
||||
void setOnMyLocationButtonClickListener(zzaz zzazVar) throws RemoteException;
|
||||
|
||||
void setOnMyLocationChangeListener(zzbb zzbbVar) throws RemoteException;
|
||||
|
||||
void setOnMyLocationClickListener(zzbd zzbdVar) throws RemoteException;
|
||||
|
||||
void setOnPoiClickListener(zzbf zzbfVar) throws RemoteException;
|
||||
|
||||
void setOnPolygonClickListener(zzbh zzbhVar) throws RemoteException;
|
||||
|
||||
void setOnPolylineClickListener(zzbj zzbjVar) throws RemoteException;
|
||||
|
||||
void setPadding(int i, int i4, int i5, int i6) throws RemoteException;
|
||||
|
||||
void setTrafficEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void setWatermarkEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void snapshot(zzbw zzbwVar, IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
|
||||
void snapshotForTest(zzbw zzbwVar) throws RemoteException;
|
||||
|
||||
void stopAnimation() throws RemoteException;
|
||||
|
||||
boolean useViewLifecycleWhenInFragment() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface ILocationSourceDelegate extends IInterface {
|
||||
void activate(zzaj zzajVar) throws RemoteException;
|
||||
|
||||
void deactivate() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import com.google.android.gms.maps.GoogleMapOptions;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface IMapFragmentDelegate extends IInterface {
|
||||
IGoogleMapDelegate getMap() throws RemoteException;
|
||||
|
||||
void getMapAsync(zzat zzatVar) throws RemoteException;
|
||||
|
||||
boolean isReady() throws RemoteException;
|
||||
|
||||
void onCreate(Bundle bundle) throws RemoteException;
|
||||
|
||||
IObjectWrapper onCreateView(IObjectWrapper iObjectWrapper, IObjectWrapper iObjectWrapper2, Bundle bundle) throws RemoteException;
|
||||
|
||||
void onDestroy() throws RemoteException;
|
||||
|
||||
void onDestroyView() throws RemoteException;
|
||||
|
||||
void onEnterAmbient(Bundle bundle) throws RemoteException;
|
||||
|
||||
void onExitAmbient() throws RemoteException;
|
||||
|
||||
void onInflate(IObjectWrapper iObjectWrapper, GoogleMapOptions googleMapOptions, Bundle bundle) throws RemoteException;
|
||||
|
||||
void onLowMemory() throws RemoteException;
|
||||
|
||||
void onPause() throws RemoteException;
|
||||
|
||||
void onResume() throws RemoteException;
|
||||
|
||||
void onSaveInstanceState(Bundle bundle) throws RemoteException;
|
||||
|
||||
void onStart() throws RemoteException;
|
||||
|
||||
void onStop() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface IMapViewDelegate extends IInterface {
|
||||
IGoogleMapDelegate getMap() throws RemoteException;
|
||||
|
||||
void getMapAsync(zzat zzatVar) throws RemoteException;
|
||||
|
||||
IObjectWrapper getView() throws RemoteException;
|
||||
|
||||
void onCreate(Bundle bundle) throws RemoteException;
|
||||
|
||||
void onDestroy() throws RemoteException;
|
||||
|
||||
void onEnterAmbient(Bundle bundle) throws RemoteException;
|
||||
|
||||
void onExitAmbient() throws RemoteException;
|
||||
|
||||
void onLowMemory() throws RemoteException;
|
||||
|
||||
void onPause() throws RemoteException;
|
||||
|
||||
void onResume() throws RemoteException;
|
||||
|
||||
void onSaveInstanceState(Bundle bundle) throws RemoteException;
|
||||
|
||||
void onStart() throws RemoteException;
|
||||
|
||||
void onStop() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
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.VisibleRegion;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface IProjectionDelegate extends IInterface {
|
||||
LatLng fromScreenLocation(IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
|
||||
VisibleRegion getVisibleRegion() throws RemoteException;
|
||||
|
||||
IObjectWrapper toScreenLocation(LatLng latLng) throws RemoteException;
|
||||
|
||||
IObjectWrapper toScreenLocationWithAltitude(LatLng latLng, float f2) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
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;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface IStreetViewPanoramaDelegate extends IInterface {
|
||||
void animateTo(StreetViewPanoramaCamera streetViewPanoramaCamera, long j4) throws RemoteException;
|
||||
|
||||
void enablePanning(boolean z3) throws RemoteException;
|
||||
|
||||
void enableStreetNames(boolean z3) throws RemoteException;
|
||||
|
||||
void enableUserNavigation(boolean z3) throws RemoteException;
|
||||
|
||||
void enableZoom(boolean z3) 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(zzbl zzblVar) throws RemoteException;
|
||||
|
||||
void setOnStreetViewPanoramaChangeListener(zzbn zzbnVar) throws RemoteException;
|
||||
|
||||
void setOnStreetViewPanoramaClickListener(zzbp zzbpVar) throws RemoteException;
|
||||
|
||||
void setOnStreetViewPanoramaLongClickListener(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, StreetViewSource streetViewSource) throws RemoteException;
|
||||
|
||||
void setPositionWithSource(LatLng latLng, StreetViewSource streetViewSource) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import com.google.android.gms.maps.StreetViewPanoramaOptions;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface IStreetViewPanoramaFragmentDelegate extends IInterface {
|
||||
IStreetViewPanoramaDelegate getStreetViewPanorama() throws RemoteException;
|
||||
|
||||
void getStreetViewPanoramaAsync(zzbt zzbtVar) throws RemoteException;
|
||||
|
||||
boolean isReady() throws RemoteException;
|
||||
|
||||
void onCreate(Bundle bundle) throws RemoteException;
|
||||
|
||||
IObjectWrapper onCreateView(IObjectWrapper iObjectWrapper, IObjectWrapper iObjectWrapper2, Bundle bundle) throws RemoteException;
|
||||
|
||||
void onDestroy() throws RemoteException;
|
||||
|
||||
void onDestroyView() throws RemoteException;
|
||||
|
||||
void onInflate(IObjectWrapper iObjectWrapper, StreetViewPanoramaOptions streetViewPanoramaOptions, Bundle bundle) throws RemoteException;
|
||||
|
||||
void onLowMemory() throws RemoteException;
|
||||
|
||||
void onPause() throws RemoteException;
|
||||
|
||||
void onResume() throws RemoteException;
|
||||
|
||||
void onSaveInstanceState(Bundle bundle) throws RemoteException;
|
||||
|
||||
void onStart() throws RemoteException;
|
||||
|
||||
void onStop() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface IStreetViewPanoramaViewDelegate extends IInterface {
|
||||
IStreetViewPanoramaDelegate getStreetViewPanorama() throws RemoteException;
|
||||
|
||||
void getStreetViewPanoramaAsync(zzbt zzbtVar) throws RemoteException;
|
||||
|
||||
IObjectWrapper getView() throws RemoteException;
|
||||
|
||||
void onCreate(Bundle bundle) throws RemoteException;
|
||||
|
||||
void onDestroy() throws RemoteException;
|
||||
|
||||
void onLowMemory() throws RemoteException;
|
||||
|
||||
void onPause() throws RemoteException;
|
||||
|
||||
void onResume() throws RemoteException;
|
||||
|
||||
void onSaveInstanceState(Bundle bundle) throws RemoteException;
|
||||
|
||||
void onStart() throws RemoteException;
|
||||
|
||||
void onStop() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface IUiSettingsDelegate extends IInterface {
|
||||
boolean isCompassEnabled() throws RemoteException;
|
||||
|
||||
boolean isIndoorLevelPickerEnabled() throws RemoteException;
|
||||
|
||||
boolean isMapToolbarEnabled() throws RemoteException;
|
||||
|
||||
boolean isMyLocationButtonEnabled() throws RemoteException;
|
||||
|
||||
boolean isRotateGesturesEnabled() throws RemoteException;
|
||||
|
||||
boolean isScrollGesturesEnabled() throws RemoteException;
|
||||
|
||||
boolean isScrollGesturesEnabledDuringRotateOrZoom() throws RemoteException;
|
||||
|
||||
boolean isTiltGesturesEnabled() throws RemoteException;
|
||||
|
||||
boolean isZoomControlsEnabled() throws RemoteException;
|
||||
|
||||
boolean isZoomGesturesEnabled() throws RemoteException;
|
||||
|
||||
void setAllGesturesEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void setCompassEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void setIndoorLevelPickerEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void setMapToolbarEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void setMyLocationButtonEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void setRotateGesturesEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void setScrollGesturesEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void setScrollGesturesEnabledDuringRotateOrZoom(boolean z3) throws RemoteException;
|
||||
|
||||
void setTiltGesturesEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void setZoomControlsEnabled(boolean z3) throws RemoteException;
|
||||
|
||||
void setZoomGesturesEnabled(boolean z3) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import com.google.android.gms.dynamic.LifecycleDelegate;
|
||||
import com.google.android.gms.maps.OnMapReadyCallback;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface MapLifecycleDelegate extends LifecycleDelegate {
|
||||
void getMapAsync(OnMapReadyCallback onMapReadyCallback);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import com.google.android.gms.dynamic.LifecycleDelegate;
|
||||
import com.google.android.gms.maps.OnStreetViewPanoramaReadyCallback;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface StreetViewLifecycleDelegate extends LifecycleDelegate {
|
||||
void getStreetViewPanoramaAsync(OnStreetViewPanoramaReadyCallback onStreetViewPanoramaReadyCallback);
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zza {
|
||||
public static byte zza(Boolean bool) {
|
||||
if (bool != null) {
|
||||
return !bool.booleanValue() ? (byte) 0 : (byte) 1;
|
||||
}
|
||||
return (byte) -1;
|
||||
}
|
||||
|
||||
public static Boolean zzb(byte b4) {
|
||||
if (b4 == 0) {
|
||||
return Boolean.FALSE;
|
||||
}
|
||||
if (b4 != 1) {
|
||||
return null;
|
||||
}
|
||||
return Boolean.TRUE;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,27 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzaa extends com.google.android.gms.internal.maps.zzb implements zzab {
|
||||
public zzaa() {
|
||||
super("com.google.android.gms.maps.internal.IOnIndoorStateChangeListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i == 1) {
|
||||
zzb();
|
||||
} else {
|
||||
if (i != 2) {
|
||||
return false;
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzu zzb = com.google.android.gms.internal.maps.zzt.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzc(zzb);
|
||||
}
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzab extends IInterface {
|
||||
void zzb() throws RemoteException;
|
||||
|
||||
void zzc(com.google.android.gms.internal.maps.zzu zzuVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzac extends com.google.android.gms.internal.maps.zzb implements zzad {
|
||||
public zzac() {
|
||||
super("com.google.android.gms.maps.internal.IOnInfoWindowClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzad zzb = com.google.android.gms.internal.maps.zzac.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(zzb);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzad extends IInterface {
|
||||
void zzb(com.google.android.gms.internal.maps.zzad zzadVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzae extends com.google.android.gms.internal.maps.zzb implements zzaf {
|
||||
public zzae() {
|
||||
super("com.google.android.gms.maps.internal.IOnInfoWindowCloseListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzad zzb = com.google.android.gms.internal.maps.zzac.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(zzb);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzaf extends IInterface {
|
||||
void zzb(com.google.android.gms.internal.maps.zzad zzadVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzag extends com.google.android.gms.internal.maps.zzb implements zzah {
|
||||
public zzag() {
|
||||
super("com.google.android.gms.maps.internal.IOnInfoWindowLongClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzad zzb = com.google.android.gms.internal.maps.zzac.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(zzb);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzah extends IInterface {
|
||||
void zzb(com.google.android.gms.internal.maps.zzad zzadVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.location.Location;
|
||||
import android.os.IBinder;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zzai extends com.google.android.gms.internal.maps.zza implements zzaj {
|
||||
public zzai(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.internal.IOnLocationChangeListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.zzaj
|
||||
public final void zzd(Location location) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, location);
|
||||
zzc(2, zza);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.location.Location;
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzaj extends IInterface {
|
||||
void zzd(Location location) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzak extends com.google.android.gms.internal.maps.zzb implements zzal {
|
||||
public zzak() {
|
||||
super("com.google.android.gms.maps.internal.IOnMapCapabilitiesChangedListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzaa zzb = com.google.android.gms.internal.maps.zzz.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(zzb);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzal extends IInterface {
|
||||
void zzb(com.google.android.gms.internal.maps.zzaa zzaaVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.LatLng;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzam extends com.google.android.gms.internal.maps.zzb implements zzan {
|
||||
public zzam() {
|
||||
super("com.google.android.gms.maps.internal.IOnMapClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
LatLng latLng = (LatLng) com.google.android.gms.internal.maps.zzc.zza(parcel, LatLng.CREATOR);
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(latLng);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.LatLng;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzan extends IInterface {
|
||||
void zzb(LatLng latLng) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzao extends com.google.android.gms.internal.maps.zzb implements zzap {
|
||||
public zzao() {
|
||||
super("com.google.android.gms.maps.internal.IOnMapLoadedCallback");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
zzb();
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzap extends IInterface {
|
||||
void zzb() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.LatLng;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzaq extends com.google.android.gms.internal.maps.zzb implements zzar {
|
||||
public zzaq() {
|
||||
super("com.google.android.gms.maps.internal.IOnMapLongClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
LatLng latLng = (LatLng) com.google.android.gms.internal.maps.zzc.zza(parcel, LatLng.CREATOR);
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(latLng);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.LatLng;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzar extends IInterface {
|
||||
void zzb(LatLng latLng) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzas extends com.google.android.gms.internal.maps.zzb implements zzat {
|
||||
public zzas() {
|
||||
super("com.google.android.gms.maps.internal.IOnMapReadyCallback");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
IGoogleMapDelegate zzgVar;
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
IBinder readStrongBinder = parcel.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzgVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.IGoogleMapDelegate");
|
||||
zzgVar = queryLocalInterface instanceof IGoogleMapDelegate ? (IGoogleMapDelegate) queryLocalInterface : new zzg(readStrongBinder);
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(zzgVar);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzat extends IInterface {
|
||||
void zzb(IGoogleMapDelegate iGoogleMapDelegate) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzau extends com.google.android.gms.internal.maps.zzb implements zzav {
|
||||
public zzau() {
|
||||
super("com.google.android.gms.maps.internal.IOnMarkerClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzad zzb = com.google.android.gms.internal.maps.zzac.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
boolean zzb2 = zzb(zzb);
|
||||
parcel2.writeNoException();
|
||||
parcel2.writeInt(zzb2 ? 1 : 0);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzav extends IInterface {
|
||||
boolean zzb(com.google.android.gms.internal.maps.zzad zzadVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzaw extends com.google.android.gms.internal.maps.zzb implements zzax {
|
||||
public zzaw() {
|
||||
super("com.google.android.gms.maps.internal.IOnMarkerDragListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i == 1) {
|
||||
com.google.android.gms.internal.maps.zzad zzb = com.google.android.gms.internal.maps.zzac.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzd(zzb);
|
||||
} else if (i == 2) {
|
||||
com.google.android.gms.internal.maps.zzad zzb2 = com.google.android.gms.internal.maps.zzac.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(zzb2);
|
||||
} else {
|
||||
if (i != 3) {
|
||||
return false;
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzad zzb3 = com.google.android.gms.internal.maps.zzac.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzc(zzb3);
|
||||
}
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzax extends IInterface {
|
||||
void zzb(com.google.android.gms.internal.maps.zzad zzadVar) throws RemoteException;
|
||||
|
||||
void zzc(com.google.android.gms.internal.maps.zzad zzadVar) throws RemoteException;
|
||||
|
||||
void zzd(com.google.android.gms.internal.maps.zzad zzadVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzay extends com.google.android.gms.internal.maps.zzb implements zzaz {
|
||||
public zzay() {
|
||||
super("com.google.android.gms.maps.internal.IOnMyLocationButtonClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
boolean zzb = zzb();
|
||||
parcel2.writeNoException();
|
||||
int i5 = com.google.android.gms.internal.maps.zzc.zza;
|
||||
parcel2.writeInt(zzb ? 1 : 0);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzaz extends IInterface {
|
||||
boolean zzb() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import C.w;
|
||||
import android.os.IBinder;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import com.google.android.gms.maps.model.CameraPosition;
|
||||
import com.google.android.gms.maps.model.LatLng;
|
||||
import com.google.android.gms.maps.model.LatLngBounds;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zzb extends com.google.android.gms.internal.maps.zza implements ICameraUpdateFactoryDelegate {
|
||||
public zzb(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.internal.ICameraUpdateFactoryDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.ICameraUpdateFactoryDelegate
|
||||
public final IObjectWrapper newCameraPosition(CameraPosition cameraPosition) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, cameraPosition);
|
||||
return w.d(zzJ(7, zza));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.ICameraUpdateFactoryDelegate
|
||||
public final IObjectWrapper newLatLng(LatLng latLng) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, latLng);
|
||||
return w.d(zzJ(8, zza));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.ICameraUpdateFactoryDelegate
|
||||
public final IObjectWrapper newLatLngBounds(LatLngBounds latLngBounds, int i) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, latLngBounds);
|
||||
zza.writeInt(i);
|
||||
return w.d(zzJ(10, zza));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.ICameraUpdateFactoryDelegate
|
||||
public final IObjectWrapper newLatLngBoundsWithSize(LatLngBounds latLngBounds, int i, int i4, int i5) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, latLngBounds);
|
||||
zza.writeInt(i);
|
||||
zza.writeInt(i4);
|
||||
zza.writeInt(i5);
|
||||
return w.d(zzJ(11, zza));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.ICameraUpdateFactoryDelegate
|
||||
public final IObjectWrapper newLatLngZoom(LatLng latLng, float f2) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, latLng);
|
||||
zza.writeFloat(f2);
|
||||
return w.d(zzJ(9, zza));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.ICameraUpdateFactoryDelegate
|
||||
public final IObjectWrapper scrollBy(float f2, float f4) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
zza.writeFloat(f2);
|
||||
zza.writeFloat(f4);
|
||||
return w.d(zzJ(3, zza));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.ICameraUpdateFactoryDelegate
|
||||
public final IObjectWrapper zoomBy(float f2) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
zza.writeFloat(f2);
|
||||
return w.d(zzJ(5, zza));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.ICameraUpdateFactoryDelegate
|
||||
public final IObjectWrapper zoomByWithFocus(float f2, int i, int i4) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
zza.writeFloat(f2);
|
||||
zza.writeInt(i);
|
||||
zza.writeInt(i4);
|
||||
return w.d(zzJ(6, zza));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.ICameraUpdateFactoryDelegate
|
||||
public final IObjectWrapper zoomIn() throws RemoteException {
|
||||
return w.d(zzJ(1, zza()));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.ICameraUpdateFactoryDelegate
|
||||
public final IObjectWrapper zoomOut() throws RemoteException {
|
||||
return w.d(zzJ(2, zza()));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.ICameraUpdateFactoryDelegate
|
||||
public final IObjectWrapper zoomTo(float f2) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
zza.writeFloat(f2);
|
||||
return w.d(zzJ(4, zza));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzba extends com.google.android.gms.internal.maps.zzb implements zzbb {
|
||||
public zzba() {
|
||||
super("com.google.android.gms.maps.internal.IOnMyLocationChangeListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
IObjectWrapper asInterface = IObjectWrapper.Stub.asInterface(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(asInterface);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzbb extends IInterface {
|
||||
void zzb(IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.location.Location;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzbc extends com.google.android.gms.internal.maps.zzb implements zzbd {
|
||||
public zzbc() {
|
||||
super("com.google.android.gms.maps.internal.IOnMyLocationClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
Location location = (Location) com.google.android.gms.internal.maps.zzc.zza(parcel, Location.CREATOR);
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(location);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.location.Location;
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzbd extends IInterface {
|
||||
void zzb(Location location) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.PointOfInterest;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzbe extends com.google.android.gms.internal.maps.zzb implements zzbf {
|
||||
public zzbe() {
|
||||
super("com.google.android.gms.maps.internal.IOnPoiClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
PointOfInterest pointOfInterest = (PointOfInterest) com.google.android.gms.internal.maps.zzc.zza(parcel, PointOfInterest.CREATOR);
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(pointOfInterest);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.PointOfInterest;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzbf extends IInterface {
|
||||
void zzb(PointOfInterest pointOfInterest) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzbg extends com.google.android.gms.internal.maps.zzb implements zzbh {
|
||||
public zzbg() {
|
||||
super("com.google.android.gms.maps.internal.IOnPolygonClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzag zzb = com.google.android.gms.internal.maps.zzaf.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(zzb);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzbh extends IInterface {
|
||||
void zzb(com.google.android.gms.internal.maps.zzag zzagVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzbi extends com.google.android.gms.internal.maps.zzb implements zzbj {
|
||||
public zzbi() {
|
||||
super("com.google.android.gms.maps.internal.IOnPolylineClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzaj zzb = com.google.android.gms.internal.maps.zzai.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(zzb);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzbj extends IInterface {
|
||||
void zzb(com.google.android.gms.internal.maps.zzaj zzajVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.StreetViewPanoramaCamera;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzbk extends com.google.android.gms.internal.maps.zzb implements zzbl {
|
||||
public zzbk() {
|
||||
super("com.google.android.gms.maps.internal.IOnStreetViewPanoramaCameraChangeListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
StreetViewPanoramaCamera streetViewPanoramaCamera = (StreetViewPanoramaCamera) com.google.android.gms.internal.maps.zzc.zza(parcel, StreetViewPanoramaCamera.CREATOR);
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(streetViewPanoramaCamera);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.StreetViewPanoramaCamera;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzbl extends IInterface {
|
||||
void zzb(StreetViewPanoramaCamera streetViewPanoramaCamera) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.StreetViewPanoramaLocation;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzbm extends com.google.android.gms.internal.maps.zzb implements zzbn {
|
||||
public zzbm() {
|
||||
super("com.google.android.gms.maps.internal.IOnStreetViewPanoramaChangeListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
StreetViewPanoramaLocation streetViewPanoramaLocation = (StreetViewPanoramaLocation) com.google.android.gms.internal.maps.zzc.zza(parcel, StreetViewPanoramaLocation.CREATOR);
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(streetViewPanoramaLocation);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.StreetViewPanoramaLocation;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzbn extends IInterface {
|
||||
void zzb(StreetViewPanoramaLocation streetViewPanoramaLocation) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.StreetViewPanoramaOrientation;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzbo extends com.google.android.gms.internal.maps.zzb implements zzbp {
|
||||
public zzbo() {
|
||||
super("com.google.android.gms.maps.internal.IOnStreetViewPanoramaClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
StreetViewPanoramaOrientation streetViewPanoramaOrientation = (StreetViewPanoramaOrientation) com.google.android.gms.internal.maps.zzc.zza(parcel, StreetViewPanoramaOrientation.CREATOR);
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(streetViewPanoramaOrientation);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.StreetViewPanoramaOrientation;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzbp extends IInterface {
|
||||
void zzb(StreetViewPanoramaOrientation streetViewPanoramaOrientation) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.StreetViewPanoramaOrientation;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzbq extends com.google.android.gms.internal.maps.zzb implements zzbr {
|
||||
public zzbq() {
|
||||
super("com.google.android.gms.maps.internal.IOnStreetViewPanoramaLongClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
StreetViewPanoramaOrientation streetViewPanoramaOrientation = (StreetViewPanoramaOrientation) com.google.android.gms.internal.maps.zzc.zza(parcel, StreetViewPanoramaOrientation.CREATOR);
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(streetViewPanoramaOrientation);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.StreetViewPanoramaOrientation;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzbr extends IInterface {
|
||||
void zzb(StreetViewPanoramaOrientation streetViewPanoramaOrientation) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzbs extends com.google.android.gms.internal.maps.zzb implements zzbt {
|
||||
public zzbs() {
|
||||
super("com.google.android.gms.maps.internal.IOnStreetViewPanoramaReadyCallback");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
IStreetViewPanoramaDelegate zzbxVar;
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
IBinder readStrongBinder = parcel.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzbxVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate");
|
||||
zzbxVar = queryLocalInterface instanceof IStreetViewPanoramaDelegate ? (IStreetViewPanoramaDelegate) queryLocalInterface : new zzbx(readStrongBinder);
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(zzbxVar);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzbt extends IInterface {
|
||||
void zzb(IStreetViewPanoramaDelegate iStreetViewPanoramaDelegate) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import C.w;
|
||||
import android.os.IBinder;
|
||||
import android.os.Parcel;
|
||||
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.VisibleRegion;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zzbu extends com.google.android.gms.internal.maps.zza implements IProjectionDelegate {
|
||||
public zzbu(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.internal.IProjectionDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IProjectionDelegate
|
||||
public final LatLng fromScreenLocation(IObjectWrapper iObjectWrapper) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
Parcel zzJ = zzJ(1, zza);
|
||||
LatLng latLng = (LatLng) com.google.android.gms.internal.maps.zzc.zza(zzJ, LatLng.CREATOR);
|
||||
zzJ.recycle();
|
||||
return latLng;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IProjectionDelegate
|
||||
public final VisibleRegion getVisibleRegion() throws RemoteException {
|
||||
Parcel zzJ = zzJ(3, zza());
|
||||
VisibleRegion visibleRegion = (VisibleRegion) com.google.android.gms.internal.maps.zzc.zza(zzJ, VisibleRegion.CREATOR);
|
||||
zzJ.recycle();
|
||||
return visibleRegion;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IProjectionDelegate
|
||||
public final IObjectWrapper toScreenLocation(LatLng latLng) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, latLng);
|
||||
return w.d(zzJ(2, zza));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IProjectionDelegate
|
||||
public final IObjectWrapper toScreenLocationWithAltitude(LatLng latLng, float f2) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, latLng);
|
||||
zza.writeFloat(f2);
|
||||
return w.d(zzJ(4, zza));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.graphics.Bitmap;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzbv extends com.google.android.gms.internal.maps.zzb implements zzbw {
|
||||
public zzbv() {
|
||||
super("com.google.android.gms.maps.internal.ISnapshotReadyCallback");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i == 1) {
|
||||
Bitmap bitmap = (Bitmap) com.google.android.gms.internal.maps.zzc.zza(parcel, Bitmap.CREATOR);
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(bitmap);
|
||||
} else {
|
||||
if (i != 2) {
|
||||
return false;
|
||||
}
|
||||
IObjectWrapper asInterface = IObjectWrapper.Stub.asInterface(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzc(asInterface);
|
||||
}
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.graphics.Bitmap;
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzbw extends IInterface {
|
||||
void zzb(Bitmap bitmap) throws RemoteException;
|
||||
|
||||
void zzc(IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,191 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import C.w;
|
||||
import android.os.IBinder;
|
||||
import android.os.Parcel;
|
||||
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;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zzbx extends com.google.android.gms.internal.maps.zza implements IStreetViewPanoramaDelegate {
|
||||
public zzbx(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void animateTo(StreetViewPanoramaCamera streetViewPanoramaCamera, long j4) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, streetViewPanoramaCamera);
|
||||
zza.writeLong(j4);
|
||||
zzc(9, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void enablePanning(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(2, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void enableStreetNames(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(4, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void enableUserNavigation(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(3, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void enableZoom(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(1, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final StreetViewPanoramaCamera getPanoramaCamera() throws RemoteException {
|
||||
Parcel zzJ = zzJ(10, zza());
|
||||
StreetViewPanoramaCamera streetViewPanoramaCamera = (StreetViewPanoramaCamera) com.google.android.gms.internal.maps.zzc.zza(zzJ, StreetViewPanoramaCamera.CREATOR);
|
||||
zzJ.recycle();
|
||||
return streetViewPanoramaCamera;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final StreetViewPanoramaLocation getStreetViewPanoramaLocation() throws RemoteException {
|
||||
Parcel zzJ = zzJ(14, zza());
|
||||
StreetViewPanoramaLocation streetViewPanoramaLocation = (StreetViewPanoramaLocation) com.google.android.gms.internal.maps.zzc.zza(zzJ, StreetViewPanoramaLocation.CREATOR);
|
||||
zzJ.recycle();
|
||||
return streetViewPanoramaLocation;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final boolean isPanningGesturesEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(6, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final boolean isStreetNamesEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(8, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final boolean isUserNavigationEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(7, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final boolean isZoomGesturesEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(5, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final IObjectWrapper orientationToPoint(StreetViewPanoramaOrientation streetViewPanoramaOrientation) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, streetViewPanoramaOrientation);
|
||||
return w.d(zzJ(19, zza));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final StreetViewPanoramaOrientation pointToOrientation(IObjectWrapper iObjectWrapper) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
Parcel zzJ = zzJ(18, zza);
|
||||
StreetViewPanoramaOrientation streetViewPanoramaOrientation = (StreetViewPanoramaOrientation) com.google.android.gms.internal.maps.zzc.zza(zzJ, StreetViewPanoramaOrientation.CREATOR);
|
||||
zzJ.recycle();
|
||||
return streetViewPanoramaOrientation;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void setOnStreetViewPanoramaCameraChangeListener(zzbl zzblVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzblVar);
|
||||
zzc(16, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void setOnStreetViewPanoramaChangeListener(zzbn zzbnVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzbnVar);
|
||||
zzc(15, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void setOnStreetViewPanoramaClickListener(zzbp zzbpVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzbpVar);
|
||||
zzc(17, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void setOnStreetViewPanoramaLongClickListener(zzbr zzbrVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzbrVar);
|
||||
zzc(20, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void setPosition(LatLng latLng) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, latLng);
|
||||
zzc(12, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void setPositionWithID(String str) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
zza.writeString(str);
|
||||
zzc(11, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void setPositionWithRadius(LatLng latLng, int i) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, latLng);
|
||||
zza.writeInt(i);
|
||||
zzc(13, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void setPositionWithRadiusAndSource(LatLng latLng, int i, StreetViewSource streetViewSource) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, latLng);
|
||||
zza.writeInt(i);
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, streetViewSource);
|
||||
zzc(22, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate
|
||||
public final void setPositionWithSource(LatLng latLng, StreetViewSource streetViewSource) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, latLng);
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, streetViewSource);
|
||||
zzc(21, zza);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import C.w;
|
||||
import android.os.Bundle;
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import com.google.android.gms.maps.StreetViewPanoramaOptions;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zzby extends com.google.android.gms.internal.maps.zza implements IStreetViewPanoramaFragmentDelegate {
|
||||
public zzby(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final IStreetViewPanoramaDelegate getStreetViewPanorama() throws RemoteException {
|
||||
IStreetViewPanoramaDelegate zzbxVar;
|
||||
Parcel zzJ = zzJ(1, zza());
|
||||
IBinder readStrongBinder = zzJ.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzbxVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate");
|
||||
zzbxVar = queryLocalInterface instanceof IStreetViewPanoramaDelegate ? (IStreetViewPanoramaDelegate) queryLocalInterface : new zzbx(readStrongBinder);
|
||||
}
|
||||
zzJ.recycle();
|
||||
return zzbxVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final void getStreetViewPanoramaAsync(zzbt zzbtVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzbtVar);
|
||||
zzc(12, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final boolean isReady() throws RemoteException {
|
||||
Parcel zzJ = zzJ(11, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final void onCreate(Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
zzc(3, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final IObjectWrapper onCreateView(IObjectWrapper iObjectWrapper, IObjectWrapper iObjectWrapper2, Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper2);
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
return w.d(zzJ(4, zza));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final void onDestroy() throws RemoteException {
|
||||
zzc(8, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final void onDestroyView() throws RemoteException {
|
||||
zzc(7, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final void onInflate(IObjectWrapper iObjectWrapper, StreetViewPanoramaOptions streetViewPanoramaOptions, Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, streetViewPanoramaOptions);
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
zzc(2, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final void onLowMemory() throws RemoteException {
|
||||
zzc(9, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final void onPause() throws RemoteException {
|
||||
zzc(6, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final void onResume() throws RemoteException {
|
||||
zzc(5, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final void onSaveInstanceState(Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
Parcel zzJ = zzJ(10, zza);
|
||||
if (zzJ.readInt() != 0) {
|
||||
bundle.readFromParcel(zzJ);
|
||||
}
|
||||
zzJ.recycle();
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final void onStart() throws RemoteException {
|
||||
zzc(13, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate
|
||||
public final void onStop() throws RemoteException {
|
||||
zzc(14, zza());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import C.w;
|
||||
import android.os.Bundle;
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zzbz extends com.google.android.gms.internal.maps.zza implements IStreetViewPanoramaViewDelegate {
|
||||
public zzbz(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.internal.IStreetViewPanoramaViewDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaViewDelegate
|
||||
public final IStreetViewPanoramaDelegate getStreetViewPanorama() throws RemoteException {
|
||||
IStreetViewPanoramaDelegate zzbxVar;
|
||||
Parcel zzJ = zzJ(1, zza());
|
||||
IBinder readStrongBinder = zzJ.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzbxVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.IStreetViewPanoramaDelegate");
|
||||
zzbxVar = queryLocalInterface instanceof IStreetViewPanoramaDelegate ? (IStreetViewPanoramaDelegate) queryLocalInterface : new zzbx(readStrongBinder);
|
||||
}
|
||||
zzJ.recycle();
|
||||
return zzbxVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaViewDelegate
|
||||
public final void getStreetViewPanoramaAsync(zzbt zzbtVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzbtVar);
|
||||
zzc(9, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaViewDelegate
|
||||
public final IObjectWrapper getView() throws RemoteException {
|
||||
return w.d(zzJ(8, zza()));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaViewDelegate
|
||||
public final void onCreate(Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
zzc(2, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaViewDelegate
|
||||
public final void onDestroy() throws RemoteException {
|
||||
zzc(5, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaViewDelegate
|
||||
public final void onLowMemory() throws RemoteException {
|
||||
zzc(6, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaViewDelegate
|
||||
public final void onPause() throws RemoteException {
|
||||
zzc(4, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaViewDelegate
|
||||
public final void onResume() throws RemoteException {
|
||||
zzc(3, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaViewDelegate
|
||||
public final void onSaveInstanceState(Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
Parcel zzJ = zzJ(7, zza);
|
||||
if (zzJ.readInt() != 0) {
|
||||
bundle.readFromParcel(zzJ);
|
||||
}
|
||||
zzJ.recycle();
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaViewDelegate
|
||||
public final void onStart() throws RemoteException {
|
||||
zzc(10, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IStreetViewPanoramaViewDelegate
|
||||
public final void onStop() throws RemoteException {
|
||||
zzc(11, zza());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzc extends com.google.android.gms.internal.maps.zzb implements zzd {
|
||||
public zzc() {
|
||||
super("com.google.android.gms.maps.internal.ICancelableCallback");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i == 1) {
|
||||
zzc();
|
||||
} else {
|
||||
if (i != 2) {
|
||||
return false;
|
||||
}
|
||||
zzb();
|
||||
}
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,180 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zzca extends com.google.android.gms.internal.maps.zza implements IUiSettingsDelegate {
|
||||
public zzca(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.internal.IUiSettingsDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final boolean isCompassEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(10, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final boolean isIndoorLevelPickerEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(17, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final boolean isMapToolbarEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(19, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final boolean isMyLocationButtonEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(11, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final boolean isRotateGesturesEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(15, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final boolean isScrollGesturesEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(12, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final boolean isScrollGesturesEnabledDuringRotateOrZoom() throws RemoteException {
|
||||
Parcel zzJ = zzJ(21, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final boolean isTiltGesturesEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(14, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final boolean isZoomControlsEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(9, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final boolean isZoomGesturesEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(13, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final void setAllGesturesEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(8, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final void setCompassEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(2, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final void setIndoorLevelPickerEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(16, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final void setMapToolbarEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(18, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final void setMyLocationButtonEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(3, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final void setRotateGesturesEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(7, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final void setScrollGesturesEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(4, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final void setScrollGesturesEnabledDuringRotateOrZoom(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(20, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final void setTiltGesturesEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(6, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final void setZoomControlsEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(1, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IUiSettingsDelegate
|
||||
public final void setZoomGesturesEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(5, zza);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.os.Parcelable;
|
||||
import com.google.android.gms.common.internal.Preconditions;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zzcb {
|
||||
private zzcb() {
|
||||
}
|
||||
|
||||
public static Parcelable zza(Bundle bundle, String str) {
|
||||
ClassLoader zzd = zzd();
|
||||
bundle.setClassLoader(zzd);
|
||||
Bundle bundle2 = bundle.getBundle("map_state");
|
||||
if (bundle2 == null) {
|
||||
return null;
|
||||
}
|
||||
bundle2.setClassLoader(zzd);
|
||||
return bundle2.getParcelable(str);
|
||||
}
|
||||
|
||||
public static void zzb(Bundle bundle, Bundle bundle2) {
|
||||
if (bundle == null || bundle2 == null) {
|
||||
return;
|
||||
}
|
||||
Parcelable zza = zza(bundle, "MapOptions");
|
||||
if (zza != null) {
|
||||
zzc(bundle2, "MapOptions", zza);
|
||||
}
|
||||
Parcelable zza2 = zza(bundle, "StreetViewPanoramaOptions");
|
||||
if (zza2 != null) {
|
||||
zzc(bundle2, "StreetViewPanoramaOptions", zza2);
|
||||
}
|
||||
Parcelable zza3 = zza(bundle, "camera");
|
||||
if (zza3 != null) {
|
||||
zzc(bundle2, "camera", zza3);
|
||||
}
|
||||
if (bundle.containsKey("position")) {
|
||||
bundle2.putString("position", bundle.getString("position"));
|
||||
}
|
||||
if (bundle.containsKey("com.google.android.wearable.compat.extra.LOWBIT_AMBIENT")) {
|
||||
bundle2.putBoolean("com.google.android.wearable.compat.extra.LOWBIT_AMBIENT", bundle.getBoolean("com.google.android.wearable.compat.extra.LOWBIT_AMBIENT", false));
|
||||
}
|
||||
}
|
||||
|
||||
public static void zzc(Bundle bundle, String str, Parcelable parcelable) {
|
||||
ClassLoader zzd = zzd();
|
||||
bundle.setClassLoader(zzd);
|
||||
Bundle bundle2 = bundle.getBundle("map_state");
|
||||
if (bundle2 == null) {
|
||||
bundle2 = new Bundle();
|
||||
}
|
||||
bundle2.setClassLoader(zzd);
|
||||
bundle2.putParcelable(str, parcelable);
|
||||
bundle.putBundle("map_state", bundle2);
|
||||
}
|
||||
|
||||
private static ClassLoader zzd() {
|
||||
return (ClassLoader) Preconditions.checkNotNull(zzcb.class.getClassLoader());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,117 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.annotation.SuppressLint;
|
||||
import android.content.Context;
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import android.util.Log;
|
||||
import com.google.android.gms.common.GooglePlayServicesNotAvailableException;
|
||||
import com.google.android.gms.common.GooglePlayServicesUtil;
|
||||
import com.google.android.gms.common.internal.Preconditions;
|
||||
import com.google.android.gms.dynamic.ObjectWrapper;
|
||||
import com.google.android.gms.dynamite.DynamiteModule;
|
||||
import com.google.android.gms.maps.MapsInitializer;
|
||||
import com.google.android.gms.maps.model.RuntimeRemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zzcc {
|
||||
private static final String zza = "zzcc";
|
||||
|
||||
@SuppressLint({"StaticFieldLeak"})
|
||||
private static Context zzb;
|
||||
private static zzf zzc;
|
||||
|
||||
public static zzf zza(Context context, MapsInitializer.Renderer renderer) throws GooglePlayServicesNotAvailableException {
|
||||
Preconditions.checkNotNull(context);
|
||||
Log.d(zza, "preferredRenderer: ".concat(String.valueOf(renderer)));
|
||||
zzf zzfVar = zzc;
|
||||
if (zzfVar != null) {
|
||||
return zzfVar;
|
||||
}
|
||||
int isGooglePlayServicesAvailable = GooglePlayServicesUtil.isGooglePlayServicesAvailable(context, 13400000);
|
||||
if (isGooglePlayServicesAvailable != 0) {
|
||||
throw new GooglePlayServicesNotAvailableException(isGooglePlayServicesAvailable);
|
||||
}
|
||||
zzf zzd = zzd(context, renderer);
|
||||
zzc = zzd;
|
||||
try {
|
||||
if (zzd.zzd() == 2) {
|
||||
try {
|
||||
zzc.zzm(ObjectWrapper.wrap(zzc(context, renderer)));
|
||||
} catch (RemoteException e4) {
|
||||
throw new RuntimeRemoteException(e4);
|
||||
} catch (UnsatisfiedLinkError unused) {
|
||||
Log.w(zza, "Caught UnsatisfiedLinkError attempting to load the LATEST renderer's native library. Attempting to use the LEGACY renderer instead.");
|
||||
zzb = null;
|
||||
zzc = zzd(context, MapsInitializer.Renderer.LEGACY);
|
||||
}
|
||||
}
|
||||
try {
|
||||
zzf zzfVar2 = zzc;
|
||||
Context zzc2 = zzc(context, renderer);
|
||||
zzc2.getClass();
|
||||
zzfVar2.zzk(ObjectWrapper.wrap(zzc2.getResources()), 18020000);
|
||||
return zzc;
|
||||
} catch (RemoteException e5) {
|
||||
throw new RuntimeRemoteException(e5);
|
||||
}
|
||||
} catch (RemoteException e6) {
|
||||
throw new RuntimeRemoteException(e6);
|
||||
}
|
||||
}
|
||||
|
||||
private static Context zzb(Exception exc, Context context) {
|
||||
Log.e(zza, "Failed to load maps module, use pre-Chimera", exc);
|
||||
return GooglePlayServicesUtil.getRemoteContext(context);
|
||||
}
|
||||
|
||||
private static Context zzc(Context context, MapsInitializer.Renderer renderer) {
|
||||
Context zzb2;
|
||||
Context context2 = zzb;
|
||||
if (context2 != null) {
|
||||
return context2;
|
||||
}
|
||||
String str = renderer == MapsInitializer.Renderer.LEGACY ? "com.google.android.gms.maps_legacy_dynamite" : "com.google.android.gms.maps_core_dynamite";
|
||||
try {
|
||||
zzb2 = DynamiteModule.load(context, DynamiteModule.PREFER_REMOTE, str).getModuleContext();
|
||||
} catch (Exception e4) {
|
||||
if (str.equals("com.google.android.gms.maps_dynamite")) {
|
||||
zzb2 = zzb(e4, context);
|
||||
} else {
|
||||
try {
|
||||
Log.d(zza, "Attempting to load maps_dynamite again.");
|
||||
zzb2 = DynamiteModule.load(context, DynamiteModule.PREFER_REMOTE, "com.google.android.gms.maps_dynamite").getModuleContext();
|
||||
} catch (Exception e5) {
|
||||
zzb2 = zzb(e5, context);
|
||||
}
|
||||
}
|
||||
}
|
||||
zzb = zzb2;
|
||||
return zzb2;
|
||||
}
|
||||
|
||||
private static zzf zzd(Context context, MapsInitializer.Renderer renderer) {
|
||||
Log.i(zza, "Making Creator dynamically");
|
||||
try {
|
||||
IBinder iBinder = (IBinder) zze(((ClassLoader) Preconditions.checkNotNull(zzc(context, renderer).getClassLoader())).loadClass("com.google.android.gms.maps.internal.CreatorImpl"));
|
||||
if (iBinder == null) {
|
||||
return null;
|
||||
}
|
||||
IInterface queryLocalInterface = iBinder.queryLocalInterface("com.google.android.gms.maps.internal.ICreator");
|
||||
return queryLocalInterface instanceof zzf ? (zzf) queryLocalInterface : new zze(iBinder);
|
||||
} catch (ClassNotFoundException e4) {
|
||||
throw new IllegalStateException("Unable to find dynamic class com.google.android.gms.maps.internal.CreatorImpl", e4);
|
||||
}
|
||||
}
|
||||
|
||||
private static Object zze(Class cls) {
|
||||
try {
|
||||
return cls.newInstance();
|
||||
} catch (IllegalAccessException e4) {
|
||||
throw new IllegalStateException("Unable to call the default constructor of ".concat(cls.getName()), e4);
|
||||
} catch (InstantiationException e5) {
|
||||
throw new IllegalStateException("Unable to instantiate the dynamic class ".concat(cls.getName()), e5);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzd extends IInterface {
|
||||
void zzb() throws RemoteException;
|
||||
|
||||
void zzc() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,140 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import com.google.android.gms.maps.GoogleMapOptions;
|
||||
import com.google.android.gms.maps.StreetViewPanoramaOptions;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zze extends com.google.android.gms.internal.maps.zza implements zzf {
|
||||
public zze(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.internal.ICreator");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.zzf
|
||||
public final int zzd() throws RemoteException {
|
||||
Parcel zzJ = zzJ(9, zza());
|
||||
int readInt = zzJ.readInt();
|
||||
zzJ.recycle();
|
||||
return readInt;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.zzf
|
||||
public final ICameraUpdateFactoryDelegate zze() throws RemoteException {
|
||||
ICameraUpdateFactoryDelegate zzbVar;
|
||||
Parcel zzJ = zzJ(4, zza());
|
||||
IBinder readStrongBinder = zzJ.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzbVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.ICameraUpdateFactoryDelegate");
|
||||
zzbVar = queryLocalInterface instanceof ICameraUpdateFactoryDelegate ? (ICameraUpdateFactoryDelegate) queryLocalInterface : new zzb(readStrongBinder);
|
||||
}
|
||||
zzJ.recycle();
|
||||
return zzbVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.zzf
|
||||
public final IMapFragmentDelegate zzf(IObjectWrapper iObjectWrapper) throws RemoteException {
|
||||
IMapFragmentDelegate zzkVar;
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
Parcel zzJ = zzJ(2, zza);
|
||||
IBinder readStrongBinder = zzJ.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzkVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.IMapFragmentDelegate");
|
||||
zzkVar = queryLocalInterface instanceof IMapFragmentDelegate ? (IMapFragmentDelegate) queryLocalInterface : new zzk(readStrongBinder);
|
||||
}
|
||||
zzJ.recycle();
|
||||
return zzkVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.zzf
|
||||
public final IMapViewDelegate zzg(IObjectWrapper iObjectWrapper, GoogleMapOptions googleMapOptions) throws RemoteException {
|
||||
IMapViewDelegate zzlVar;
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, googleMapOptions);
|
||||
Parcel zzJ = zzJ(3, zza);
|
||||
IBinder readStrongBinder = zzJ.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzlVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.IMapViewDelegate");
|
||||
zzlVar = queryLocalInterface instanceof IMapViewDelegate ? (IMapViewDelegate) queryLocalInterface : new zzl(readStrongBinder);
|
||||
}
|
||||
zzJ.recycle();
|
||||
return zzlVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.zzf
|
||||
public final IStreetViewPanoramaFragmentDelegate zzh(IObjectWrapper iObjectWrapper) throws RemoteException {
|
||||
IStreetViewPanoramaFragmentDelegate zzbyVar;
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
Parcel zzJ = zzJ(8, zza);
|
||||
IBinder readStrongBinder = zzJ.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzbyVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.IStreetViewPanoramaFragmentDelegate");
|
||||
zzbyVar = queryLocalInterface instanceof IStreetViewPanoramaFragmentDelegate ? (IStreetViewPanoramaFragmentDelegate) queryLocalInterface : new zzby(readStrongBinder);
|
||||
}
|
||||
zzJ.recycle();
|
||||
return zzbyVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.zzf
|
||||
public final IStreetViewPanoramaViewDelegate zzi(IObjectWrapper iObjectWrapper, StreetViewPanoramaOptions streetViewPanoramaOptions) throws RemoteException {
|
||||
IStreetViewPanoramaViewDelegate zzbzVar;
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, streetViewPanoramaOptions);
|
||||
Parcel zzJ = zzJ(7, zza);
|
||||
IBinder readStrongBinder = zzJ.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzbzVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.IStreetViewPanoramaViewDelegate");
|
||||
zzbzVar = queryLocalInterface instanceof IStreetViewPanoramaViewDelegate ? (IStreetViewPanoramaViewDelegate) queryLocalInterface : new zzbz(readStrongBinder);
|
||||
}
|
||||
zzJ.recycle();
|
||||
return zzbzVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.zzf
|
||||
public final com.google.android.gms.internal.maps.zzi zzj() throws RemoteException {
|
||||
Parcel zzJ = zzJ(5, zza());
|
||||
com.google.android.gms.internal.maps.zzi zzb = com.google.android.gms.internal.maps.zzh.zzb(zzJ.readStrongBinder());
|
||||
zzJ.recycle();
|
||||
return zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.zzf
|
||||
public final void zzk(IObjectWrapper iObjectWrapper, int i) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
zza.writeInt(18020000);
|
||||
zzc(6, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.zzf
|
||||
public final void zzl(IObjectWrapper iObjectWrapper, int i) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
zza.writeInt(i);
|
||||
zzc(10, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.zzf
|
||||
public final void zzm(IObjectWrapper iObjectWrapper) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
zzc(11, zza);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
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.GoogleMapOptions;
|
||||
import com.google.android.gms.maps.StreetViewPanoramaOptions;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzf extends IInterface {
|
||||
int zzd() throws RemoteException;
|
||||
|
||||
ICameraUpdateFactoryDelegate zze() throws RemoteException;
|
||||
|
||||
IMapFragmentDelegate zzf(IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
|
||||
IMapViewDelegate zzg(IObjectWrapper iObjectWrapper, GoogleMapOptions googleMapOptions) throws RemoteException;
|
||||
|
||||
IStreetViewPanoramaFragmentDelegate zzh(IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
|
||||
IStreetViewPanoramaViewDelegate zzi(IObjectWrapper iObjectWrapper, StreetViewPanoramaOptions streetViewPanoramaOptions) throws RemoteException;
|
||||
|
||||
com.google.android.gms.internal.maps.zzi zzj() throws RemoteException;
|
||||
|
||||
void zzk(IObjectWrapper iObjectWrapper, int i) throws RemoteException;
|
||||
|
||||
void zzl(IObjectWrapper iObjectWrapper, int i) throws RemoteException;
|
||||
|
||||
void zzm(IObjectWrapper iObjectWrapper) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,629 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.location.Location;
|
||||
import android.os.Bundle;
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import com.google.android.gms.maps.model.CameraPosition;
|
||||
import com.google.android.gms.maps.model.CircleOptions;
|
||||
import com.google.android.gms.maps.model.GroundOverlayOptions;
|
||||
import com.google.android.gms.maps.model.LatLngBounds;
|
||||
import com.google.android.gms.maps.model.MapStyleOptions;
|
||||
import com.google.android.gms.maps.model.MarkerOptions;
|
||||
import com.google.android.gms.maps.model.PolygonOptions;
|
||||
import com.google.android.gms.maps.model.PolylineOptions;
|
||||
import com.google.android.gms.maps.model.TileOverlayOptions;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zzg extends com.google.android.gms.internal.maps.zza implements IGoogleMapDelegate {
|
||||
public zzg(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.internal.IGoogleMapDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final com.google.android.gms.internal.maps.zzl addCircle(CircleOptions circleOptions) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, circleOptions);
|
||||
Parcel zzJ = zzJ(35, zza);
|
||||
com.google.android.gms.internal.maps.zzl zzb = com.google.android.gms.internal.maps.zzk.zzb(zzJ.readStrongBinder());
|
||||
zzJ.recycle();
|
||||
return zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final com.google.android.gms.internal.maps.zzr addGroundOverlay(GroundOverlayOptions groundOverlayOptions) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, groundOverlayOptions);
|
||||
Parcel zzJ = zzJ(12, zza);
|
||||
com.google.android.gms.internal.maps.zzr zzb = com.google.android.gms.internal.maps.zzq.zzb(zzJ.readStrongBinder());
|
||||
zzJ.recycle();
|
||||
return zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final com.google.android.gms.internal.maps.zzad addMarker(MarkerOptions markerOptions) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, markerOptions);
|
||||
Parcel zzJ = zzJ(11, zza);
|
||||
com.google.android.gms.internal.maps.zzad zzb = com.google.android.gms.internal.maps.zzac.zzb(zzJ.readStrongBinder());
|
||||
zzJ.recycle();
|
||||
return zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void addOnMapCapabilitiesChangedListener(zzal zzalVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzalVar);
|
||||
zzc(110, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final com.google.android.gms.internal.maps.zzag addPolygon(PolygonOptions polygonOptions) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, polygonOptions);
|
||||
Parcel zzJ = zzJ(10, zza);
|
||||
com.google.android.gms.internal.maps.zzag zzb = com.google.android.gms.internal.maps.zzaf.zzb(zzJ.readStrongBinder());
|
||||
zzJ.recycle();
|
||||
return zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final com.google.android.gms.internal.maps.zzaj addPolyline(PolylineOptions polylineOptions) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, polylineOptions);
|
||||
Parcel zzJ = zzJ(9, zza);
|
||||
com.google.android.gms.internal.maps.zzaj zzb = com.google.android.gms.internal.maps.zzai.zzb(zzJ.readStrongBinder());
|
||||
zzJ.recycle();
|
||||
return zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final com.google.android.gms.internal.maps.zzam addTileOverlay(TileOverlayOptions tileOverlayOptions) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, tileOverlayOptions);
|
||||
Parcel zzJ = zzJ(13, zza);
|
||||
com.google.android.gms.internal.maps.zzam zzb = com.google.android.gms.internal.maps.zzal.zzb(zzJ.readStrongBinder());
|
||||
zzJ.recycle();
|
||||
return zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void animateCamera(IObjectWrapper iObjectWrapper) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
zzc(5, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void animateCameraWithCallback(IObjectWrapper iObjectWrapper, zzd zzdVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzdVar);
|
||||
zzc(6, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void animateCameraWithDurationAndCallback(IObjectWrapper iObjectWrapper, int i, zzd zzdVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
zza.writeInt(i);
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzdVar);
|
||||
zzc(7, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void clear() throws RemoteException {
|
||||
zzc(14, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final CameraPosition getCameraPosition() throws RemoteException {
|
||||
Parcel zzJ = zzJ(1, zza());
|
||||
CameraPosition cameraPosition = (CameraPosition) com.google.android.gms.internal.maps.zzc.zza(zzJ, CameraPosition.CREATOR);
|
||||
zzJ.recycle();
|
||||
return cameraPosition;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final com.google.android.gms.internal.maps.zzo getFeatureLayer(com.google.android.gms.maps.model.zzd zzdVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, zzdVar);
|
||||
Parcel zzJ = zzJ(112, zza);
|
||||
com.google.android.gms.internal.maps.zzo zzb = com.google.android.gms.internal.maps.zzn.zzb(zzJ.readStrongBinder());
|
||||
zzJ.recycle();
|
||||
return zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final com.google.android.gms.internal.maps.zzu getFocusedBuilding() throws RemoteException {
|
||||
Parcel zzJ = zzJ(44, zza());
|
||||
com.google.android.gms.internal.maps.zzu zzb = com.google.android.gms.internal.maps.zzt.zzb(zzJ.readStrongBinder());
|
||||
zzJ.recycle();
|
||||
return zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void getMapAsync(zzat zzatVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzatVar);
|
||||
zzc(53, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final com.google.android.gms.internal.maps.zzaa getMapCapabilities() throws RemoteException {
|
||||
Parcel zzJ = zzJ(109, zza());
|
||||
com.google.android.gms.internal.maps.zzaa zzb = com.google.android.gms.internal.maps.zzz.zzb(zzJ.readStrongBinder());
|
||||
zzJ.recycle();
|
||||
return zzb;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final int getMapType() throws RemoteException {
|
||||
Parcel zzJ = zzJ(15, zza());
|
||||
int readInt = zzJ.readInt();
|
||||
zzJ.recycle();
|
||||
return readInt;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final float getMaxZoomLevel() throws RemoteException {
|
||||
Parcel zzJ = zzJ(2, zza());
|
||||
float readFloat = zzJ.readFloat();
|
||||
zzJ.recycle();
|
||||
return readFloat;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final float getMinZoomLevel() throws RemoteException {
|
||||
Parcel zzJ = zzJ(3, zza());
|
||||
float readFloat = zzJ.readFloat();
|
||||
zzJ.recycle();
|
||||
return readFloat;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final Location getMyLocation() throws RemoteException {
|
||||
Parcel zzJ = zzJ(23, zza());
|
||||
Location location = (Location) com.google.android.gms.internal.maps.zzc.zza(zzJ, Location.CREATOR);
|
||||
zzJ.recycle();
|
||||
return location;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final IProjectionDelegate getProjection() throws RemoteException {
|
||||
IProjectionDelegate zzbuVar;
|
||||
Parcel zzJ = zzJ(26, zza());
|
||||
IBinder readStrongBinder = zzJ.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzbuVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.IProjectionDelegate");
|
||||
zzbuVar = queryLocalInterface instanceof IProjectionDelegate ? (IProjectionDelegate) queryLocalInterface : new zzbu(readStrongBinder);
|
||||
}
|
||||
zzJ.recycle();
|
||||
return zzbuVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final IUiSettingsDelegate getUiSettings() throws RemoteException {
|
||||
IUiSettingsDelegate zzcaVar;
|
||||
Parcel zzJ = zzJ(25, zza());
|
||||
IBinder readStrongBinder = zzJ.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzcaVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.IUiSettingsDelegate");
|
||||
zzcaVar = queryLocalInterface instanceof IUiSettingsDelegate ? (IUiSettingsDelegate) queryLocalInterface : new zzca(readStrongBinder);
|
||||
}
|
||||
zzJ.recycle();
|
||||
return zzcaVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final boolean isBuildingsEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(40, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final boolean isIndoorEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(19, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final boolean isMyLocationEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(21, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final boolean isTrafficEnabled() throws RemoteException {
|
||||
Parcel zzJ = zzJ(17, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void moveCamera(IObjectWrapper iObjectWrapper) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
zzc(4, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void onCreate(Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
zzc(54, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void onDestroy() throws RemoteException {
|
||||
zzc(57, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void onEnterAmbient(Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
zzc(81, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void onExitAmbient() throws RemoteException {
|
||||
zzc(82, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void onLowMemory() throws RemoteException {
|
||||
zzc(58, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void onPause() throws RemoteException {
|
||||
zzc(56, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void onResume() throws RemoteException {
|
||||
zzc(55, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void onSaveInstanceState(Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
Parcel zzJ = zzJ(60, zza);
|
||||
if (zzJ.readInt() != 0) {
|
||||
bundle.readFromParcel(zzJ);
|
||||
}
|
||||
zzJ.recycle();
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void onStart() throws RemoteException {
|
||||
zzc(101, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void onStop() throws RemoteException {
|
||||
zzc(102, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void removeOnMapCapabilitiesChangedListener(zzal zzalVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzalVar);
|
||||
zzc(111, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void resetMinMaxZoomPreference() throws RemoteException {
|
||||
zzc(94, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setBuildingsEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(41, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setContentDescription(String str) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
zza.writeString(str);
|
||||
zzc(61, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final boolean setIndoorEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
Parcel zzJ = zzJ(20, zza);
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setInfoWindowAdapter(zzi zziVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zziVar);
|
||||
zzc(33, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setLatLngBoundsForCameraTarget(LatLngBounds latLngBounds) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, latLngBounds);
|
||||
zzc(95, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setLocationSource(ILocationSourceDelegate iLocationSourceDelegate) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iLocationSourceDelegate);
|
||||
zzc(24, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final boolean setMapStyle(MapStyleOptions mapStyleOptions) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, mapStyleOptions);
|
||||
Parcel zzJ = zzJ(91, zza);
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setMapType(int i) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
zza.writeInt(i);
|
||||
zzc(16, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setMaxZoomPreference(float f2) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
zza.writeFloat(f2);
|
||||
zzc(93, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setMinZoomPreference(float f2) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
zza.writeFloat(f2);
|
||||
zzc(92, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setMyLocationEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(22, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnCameraChangeListener(zzn zznVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zznVar);
|
||||
zzc(27, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnCameraIdleListener(zzp zzpVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzpVar);
|
||||
zzc(99, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnCameraMoveCanceledListener(zzr zzrVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzrVar);
|
||||
zzc(98, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnCameraMoveListener(zzt zztVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zztVar);
|
||||
zzc(97, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnCameraMoveStartedListener(zzv zzvVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzvVar);
|
||||
zzc(96, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnCircleClickListener(zzx zzxVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzxVar);
|
||||
zzc(89, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnGroundOverlayClickListener(zzz zzzVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzzVar);
|
||||
zzc(83, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnIndoorStateChangeListener(zzab zzabVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzabVar);
|
||||
zzc(45, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnInfoWindowClickListener(zzad zzadVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzadVar);
|
||||
zzc(32, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnInfoWindowCloseListener(zzaf zzafVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzafVar);
|
||||
zzc(86, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnInfoWindowLongClickListener(zzah zzahVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzahVar);
|
||||
zzc(84, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnMapClickListener(zzan zzanVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzanVar);
|
||||
zzc(28, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnMapLoadedCallback(zzap zzapVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzapVar);
|
||||
zzc(42, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnMapLongClickListener(zzar zzarVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzarVar);
|
||||
zzc(29, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnMarkerClickListener(zzav zzavVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzavVar);
|
||||
zzc(30, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnMarkerDragListener(zzax zzaxVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzaxVar);
|
||||
zzc(31, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnMyLocationButtonClickListener(zzaz zzazVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzazVar);
|
||||
zzc(37, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnMyLocationChangeListener(zzbb zzbbVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzbbVar);
|
||||
zzc(36, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnMyLocationClickListener(zzbd zzbdVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzbdVar);
|
||||
zzc(107, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnPoiClickListener(zzbf zzbfVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzbfVar);
|
||||
zzc(80, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnPolygonClickListener(zzbh zzbhVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzbhVar);
|
||||
zzc(85, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setOnPolylineClickListener(zzbj zzbjVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzbjVar);
|
||||
zzc(87, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setPadding(int i, int i4, int i5, int i6) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
zza.writeInt(i);
|
||||
zza.writeInt(i4);
|
||||
zza.writeInt(i5);
|
||||
zza.writeInt(i6);
|
||||
zzc(39, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setTrafficEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(18, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void setWatermarkEnabled(boolean z3) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
int i = com.google.android.gms.internal.maps.zzc.zza;
|
||||
zza.writeInt(z3 ? 1 : 0);
|
||||
zzc(51, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void snapshot(zzbw zzbwVar, IObjectWrapper iObjectWrapper) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzbwVar);
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
zzc(38, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void snapshotForTest(zzbw zzbwVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzbwVar);
|
||||
zzc(71, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final void stopAnimation() throws RemoteException {
|
||||
zzc(8, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IGoogleMapDelegate
|
||||
public final boolean useViewLifecycleWhenInFragment() throws RemoteException {
|
||||
Parcel zzJ = zzJ(59, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzh extends com.google.android.gms.internal.maps.zzb implements zzi {
|
||||
public zzh() {
|
||||
super("com.google.android.gms.maps.internal.IInfoWindowAdapter");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i == 1) {
|
||||
com.google.android.gms.internal.maps.zzad zzb = com.google.android.gms.internal.maps.zzac.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
IObjectWrapper zzc = zzc(zzb);
|
||||
parcel2.writeNoException();
|
||||
com.google.android.gms.internal.maps.zzc.zze(parcel2, zzc);
|
||||
} else {
|
||||
if (i != 2) {
|
||||
return false;
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzad zzb2 = com.google.android.gms.internal.maps.zzac.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
IObjectWrapper zzb3 = zzb(zzb2);
|
||||
parcel2.writeNoException();
|
||||
com.google.android.gms.internal.maps.zzc.zze(parcel2, zzb3);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzi extends IInterface {
|
||||
IObjectWrapper zzb(com.google.android.gms.internal.maps.zzad zzadVar) throws RemoteException;
|
||||
|
||||
IObjectWrapper zzc(com.google.android.gms.internal.maps.zzad zzadVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzj extends com.google.android.gms.internal.maps.zzb implements ILocationSourceDelegate {
|
||||
public zzj() {
|
||||
super("com.google.android.gms.maps.internal.ILocationSourceDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
zzaj zzaiVar;
|
||||
if (i == 1) {
|
||||
IBinder readStrongBinder = parcel.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzaiVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.IOnLocationChangeListener");
|
||||
zzaiVar = queryLocalInterface instanceof zzaj ? (zzaj) queryLocalInterface : new zzai(readStrongBinder);
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
activate(zzaiVar);
|
||||
} else {
|
||||
if (i != 2) {
|
||||
return false;
|
||||
}
|
||||
deactivate();
|
||||
}
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import C.w;
|
||||
import android.os.Bundle;
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
import com.google.android.gms.maps.GoogleMapOptions;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zzk extends com.google.android.gms.internal.maps.zza implements IMapFragmentDelegate {
|
||||
public zzk(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.internal.IMapFragmentDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final IGoogleMapDelegate getMap() throws RemoteException {
|
||||
IGoogleMapDelegate zzgVar;
|
||||
Parcel zzJ = zzJ(1, zza());
|
||||
IBinder readStrongBinder = zzJ.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzgVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.IGoogleMapDelegate");
|
||||
zzgVar = queryLocalInterface instanceof IGoogleMapDelegate ? (IGoogleMapDelegate) queryLocalInterface : new zzg(readStrongBinder);
|
||||
}
|
||||
zzJ.recycle();
|
||||
return zzgVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final void getMapAsync(zzat zzatVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzatVar);
|
||||
zzc(12, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final boolean isReady() throws RemoteException {
|
||||
Parcel zzJ = zzJ(11, zza());
|
||||
boolean zzf = com.google.android.gms.internal.maps.zzc.zzf(zzJ);
|
||||
zzJ.recycle();
|
||||
return zzf;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final void onCreate(Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
zzc(3, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final IObjectWrapper onCreateView(IObjectWrapper iObjectWrapper, IObjectWrapper iObjectWrapper2, Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper2);
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
return w.d(zzJ(4, zza));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final void onDestroy() throws RemoteException {
|
||||
zzc(8, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final void onDestroyView() throws RemoteException {
|
||||
zzc(7, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final void onEnterAmbient(Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
zzc(13, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final void onExitAmbient() throws RemoteException {
|
||||
zzc(14, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final void onInflate(IObjectWrapper iObjectWrapper, GoogleMapOptions googleMapOptions, Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, iObjectWrapper);
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, googleMapOptions);
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
zzc(2, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final void onLowMemory() throws RemoteException {
|
||||
zzc(9, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final void onPause() throws RemoteException {
|
||||
zzc(6, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final void onResume() throws RemoteException {
|
||||
zzc(5, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final void onSaveInstanceState(Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
Parcel zzJ = zzJ(10, zza);
|
||||
if (zzJ.readInt() != 0) {
|
||||
bundle.readFromParcel(zzJ);
|
||||
}
|
||||
zzJ.recycle();
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final void onStart() throws RemoteException {
|
||||
zzc(15, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapFragmentDelegate
|
||||
public final void onStop() throws RemoteException {
|
||||
zzc(16, zza());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import C.w;
|
||||
import android.os.Bundle;
|
||||
import android.os.IBinder;
|
||||
import android.os.IInterface;
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.dynamic.IObjectWrapper;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class zzl extends com.google.android.gms.internal.maps.zza implements IMapViewDelegate {
|
||||
public zzl(IBinder iBinder) {
|
||||
super(iBinder, "com.google.android.gms.maps.internal.IMapViewDelegate");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapViewDelegate
|
||||
public final IGoogleMapDelegate getMap() throws RemoteException {
|
||||
IGoogleMapDelegate zzgVar;
|
||||
Parcel zzJ = zzJ(1, zza());
|
||||
IBinder readStrongBinder = zzJ.readStrongBinder();
|
||||
if (readStrongBinder == null) {
|
||||
zzgVar = null;
|
||||
} else {
|
||||
IInterface queryLocalInterface = readStrongBinder.queryLocalInterface("com.google.android.gms.maps.internal.IGoogleMapDelegate");
|
||||
zzgVar = queryLocalInterface instanceof IGoogleMapDelegate ? (IGoogleMapDelegate) queryLocalInterface : new zzg(readStrongBinder);
|
||||
}
|
||||
zzJ.recycle();
|
||||
return zzgVar;
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapViewDelegate
|
||||
public final void getMapAsync(zzat zzatVar) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zze(zza, zzatVar);
|
||||
zzc(9, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapViewDelegate
|
||||
public final IObjectWrapper getView() throws RemoteException {
|
||||
return w.d(zzJ(8, zza()));
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapViewDelegate
|
||||
public final void onCreate(Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
zzc(2, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapViewDelegate
|
||||
public final void onDestroy() throws RemoteException {
|
||||
zzc(5, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapViewDelegate
|
||||
public final void onEnterAmbient(Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
zzc(10, zza);
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapViewDelegate
|
||||
public final void onExitAmbient() throws RemoteException {
|
||||
zzc(11, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapViewDelegate
|
||||
public final void onLowMemory() throws RemoteException {
|
||||
zzc(6, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapViewDelegate
|
||||
public final void onPause() throws RemoteException {
|
||||
zzc(4, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapViewDelegate
|
||||
public final void onResume() throws RemoteException {
|
||||
zzc(3, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapViewDelegate
|
||||
public final void onSaveInstanceState(Bundle bundle) throws RemoteException {
|
||||
Parcel zza = zza();
|
||||
com.google.android.gms.internal.maps.zzc.zzd(zza, bundle);
|
||||
Parcel zzJ = zzJ(7, zza);
|
||||
if (zzJ.readInt() != 0) {
|
||||
bundle.readFromParcel(zzJ);
|
||||
}
|
||||
zzJ.recycle();
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapViewDelegate
|
||||
public final void onStart() throws RemoteException {
|
||||
zzc(12, zza());
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.maps.internal.IMapViewDelegate
|
||||
public final void onStop() throws RemoteException {
|
||||
zzc(13, zza());
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.CameraPosition;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzm extends com.google.android.gms.internal.maps.zzb implements zzn {
|
||||
public zzm() {
|
||||
super("com.google.android.gms.maps.internal.IOnCameraChangeListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
CameraPosition cameraPosition = (CameraPosition) com.google.android.gms.internal.maps.zzc.zza(parcel, CameraPosition.CREATOR);
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(cameraPosition);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
import com.google.android.gms.maps.model.CameraPosition;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzn extends IInterface {
|
||||
void zzb(CameraPosition cameraPosition) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzo extends com.google.android.gms.internal.maps.zzb implements zzp {
|
||||
public zzo() {
|
||||
super("com.google.android.gms.maps.internal.IOnCameraIdleListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
zzb();
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzp extends IInterface {
|
||||
void zzb() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzq extends com.google.android.gms.internal.maps.zzb implements zzr {
|
||||
public zzq() {
|
||||
super("com.google.android.gms.maps.internal.IOnCameraMoveCanceledListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
zzb();
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzr extends IInterface {
|
||||
void zzb() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzs extends com.google.android.gms.internal.maps.zzb implements zzt {
|
||||
public zzs() {
|
||||
super("com.google.android.gms.maps.internal.IOnCameraMoveListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
zzb();
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzt extends IInterface {
|
||||
void zzb() throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzu extends com.google.android.gms.internal.maps.zzb implements zzv {
|
||||
public zzu() {
|
||||
super("com.google.android.gms.maps.internal.IOnCameraMoveStartedListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
int readInt = parcel.readInt();
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(readInt);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzv extends IInterface {
|
||||
void zzb(int i) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzw extends com.google.android.gms.internal.maps.zzb implements zzx {
|
||||
public zzw() {
|
||||
super("com.google.android.gms.maps.internal.IOnCircleClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzl zzb = com.google.android.gms.internal.maps.zzk.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(zzb);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzx extends IInterface {
|
||||
void zzb(com.google.android.gms.internal.maps.zzl zzlVar) throws RemoteException;
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.Parcel;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class zzy extends com.google.android.gms.internal.maps.zzb implements zzz {
|
||||
public zzy() {
|
||||
super("com.google.android.gms.maps.internal.IOnGroundOverlayClickListener");
|
||||
}
|
||||
|
||||
@Override // com.google.android.gms.internal.maps.zzb
|
||||
public final boolean zza(int i, Parcel parcel, Parcel parcel2, int i4) throws RemoteException {
|
||||
if (i != 1) {
|
||||
return false;
|
||||
}
|
||||
com.google.android.gms.internal.maps.zzr zzb = com.google.android.gms.internal.maps.zzq.zzb(parcel.readStrongBinder());
|
||||
com.google.android.gms.internal.maps.zzc.zzc(parcel);
|
||||
zzb(zzb);
|
||||
parcel2.writeNoException();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.google.android.gms.maps.internal;
|
||||
|
||||
import android.os.IInterface;
|
||||
import android.os.RemoteException;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public interface zzz extends IInterface {
|
||||
void zzb(com.google.android.gms.internal.maps.zzr zzrVar) throws RemoteException;
|
||||
}
|
||||
Reference in New Issue
Block a user