55 lines
2.2 KiB
Java
55 lines
2.2 KiB
Java
package com.google.android.gms.maps.model;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import com.google.android.gms.common.internal.ReflectedParcelable;
|
|
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
|
|
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
|
|
|
|
/* JADX INFO: compiled from: com.google.android.gms:play-services-maps@@19.0.0 */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
public final class LatLng extends AbstractSafeParcelable implements ReflectedParcelable {
|
|
public static final Parcelable.Creator<LatLng> CREATOR = new zzn();
|
|
public final double latitude;
|
|
public final double longitude;
|
|
|
|
public LatLng(double d, double d2) {
|
|
if (d2 < -180.0d || d2 >= 180.0d) {
|
|
this.longitude = ((((d2 - 180.0d) % 360.0d) + 360.0d) % 360.0d) - 180.0d;
|
|
} else {
|
|
this.longitude = d2;
|
|
}
|
|
this.latitude = Math.max(-90.0d, Math.min(90.0d, d));
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (!(obj instanceof LatLng)) {
|
|
return false;
|
|
}
|
|
LatLng latLng = (LatLng) obj;
|
|
return Double.doubleToLongBits(this.latitude) == Double.doubleToLongBits(latLng.latitude) && Double.doubleToLongBits(this.longitude) == Double.doubleToLongBits(latLng.longitude);
|
|
}
|
|
|
|
public int hashCode() {
|
|
long jDoubleToLongBits = Double.doubleToLongBits(this.latitude);
|
|
long j = jDoubleToLongBits ^ (jDoubleToLongBits >>> 32);
|
|
long jDoubleToLongBits2 = Double.doubleToLongBits(this.longitude);
|
|
return ((((int) j) + 31) * 31) + ((int) (jDoubleToLongBits2 ^ (jDoubleToLongBits2 >>> 32)));
|
|
}
|
|
|
|
public String toString() {
|
|
return "lat/lng: (" + this.latitude + "," + this.longitude + ")";
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public void writeToParcel(Parcel parcel, int i) {
|
|
double d = this.latitude;
|
|
int iBeginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
|
SafeParcelWriter.writeDouble(parcel, 2, d);
|
|
SafeParcelWriter.writeDouble(parcel, 3, this.longitude);
|
|
SafeParcelWriter.finishObjectHeader(parcel, iBeginObjectHeader);
|
|
}
|
|
} |