200 lines
5.5 KiB
Java
200 lines
5.5 KiB
Java
|
package com.google.android.gms.maps.model;
|
||
|
|
||
|
import android.os.Parcel;
|
||
|
import android.os.Parcelable;
|
||
|
import com.google.android.gms.common.internal.Preconditions;
|
||
|
import com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable;
|
||
|
import com.google.android.gms.common.internal.safeparcel.SafeParcelWriter;
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.Arrays;
|
||
|
import java.util.Iterator;
|
||
|
import java.util.List;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public final class PolylineOptions extends AbstractSafeParcelable {
|
||
|
public static final Parcelable.Creator<PolylineOptions> CREATOR = new zzl();
|
||
|
private int color;
|
||
|
private float width;
|
||
|
private float zzcs;
|
||
|
private boolean zzct;
|
||
|
private boolean zzcu;
|
||
|
private final List<LatLng> zzdx;
|
||
|
private boolean zzdz;
|
||
|
private Cap zzec;
|
||
|
private Cap zzed;
|
||
|
private int zzee;
|
||
|
private List<PatternItem> zzef;
|
||
|
|
||
|
public PolylineOptions() {
|
||
|
this.width = 10.0f;
|
||
|
this.color = -16777216;
|
||
|
this.zzcs = BitmapDescriptorFactory.HUE_RED;
|
||
|
this.zzct = true;
|
||
|
this.zzdz = false;
|
||
|
this.zzcu = false;
|
||
|
this.zzec = new ButtCap();
|
||
|
this.zzed = new ButtCap();
|
||
|
this.zzee = 0;
|
||
|
this.zzef = null;
|
||
|
this.zzdx = new ArrayList();
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public PolylineOptions(List list, float f, int i, float f2, boolean z, boolean z2, boolean z3, Cap cap, Cap cap2, int i2, List<PatternItem> list2) {
|
||
|
this.width = 10.0f;
|
||
|
this.color = -16777216;
|
||
|
this.zzcs = BitmapDescriptorFactory.HUE_RED;
|
||
|
this.zzct = true;
|
||
|
this.zzdz = false;
|
||
|
this.zzcu = false;
|
||
|
this.zzec = new ButtCap();
|
||
|
this.zzed = new ButtCap();
|
||
|
this.zzee = 0;
|
||
|
this.zzef = null;
|
||
|
this.zzdx = list;
|
||
|
this.width = f;
|
||
|
this.color = i;
|
||
|
this.zzcs = f2;
|
||
|
this.zzct = z;
|
||
|
this.zzdz = z2;
|
||
|
this.zzcu = z3;
|
||
|
if (cap != null) {
|
||
|
this.zzec = cap;
|
||
|
}
|
||
|
if (cap2 != null) {
|
||
|
this.zzed = cap2;
|
||
|
}
|
||
|
this.zzee = i2;
|
||
|
this.zzef = list2;
|
||
|
}
|
||
|
|
||
|
@Override // android.os.Parcelable
|
||
|
public final void writeToParcel(Parcel parcel, int i) {
|
||
|
int beginObjectHeader = SafeParcelWriter.beginObjectHeader(parcel);
|
||
|
SafeParcelWriter.writeTypedList(parcel, 2, getPoints(), false);
|
||
|
SafeParcelWriter.writeFloat(parcel, 3, getWidth());
|
||
|
SafeParcelWriter.writeInt(parcel, 4, getColor());
|
||
|
SafeParcelWriter.writeFloat(parcel, 5, getZIndex());
|
||
|
SafeParcelWriter.writeBoolean(parcel, 6, isVisible());
|
||
|
SafeParcelWriter.writeBoolean(parcel, 7, isGeodesic());
|
||
|
SafeParcelWriter.writeBoolean(parcel, 8, isClickable());
|
||
|
SafeParcelWriter.writeParcelable(parcel, 9, getStartCap(), i, false);
|
||
|
SafeParcelWriter.writeParcelable(parcel, 10, getEndCap(), i, false);
|
||
|
SafeParcelWriter.writeInt(parcel, 11, getJointType());
|
||
|
SafeParcelWriter.writeTypedList(parcel, 12, getPattern(), false);
|
||
|
SafeParcelWriter.finishObjectHeader(parcel, beginObjectHeader);
|
||
|
}
|
||
|
|
||
|
public final PolylineOptions add(LatLng latLng) {
|
||
|
this.zzdx.add(latLng);
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public final PolylineOptions add(LatLng... latLngArr) {
|
||
|
this.zzdx.addAll(Arrays.asList(latLngArr));
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public final PolylineOptions addAll(Iterable<LatLng> iterable) {
|
||
|
Iterator<LatLng> it = iterable.iterator();
|
||
|
while (it.hasNext()) {
|
||
|
this.zzdx.add(it.next());
|
||
|
}
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public final PolylineOptions startCap(Cap cap) {
|
||
|
this.zzec = (Cap) Preconditions.checkNotNull(cap, "startCap must not be null");
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public final PolylineOptions endCap(Cap cap) {
|
||
|
this.zzed = (Cap) Preconditions.checkNotNull(cap, "endCap must not be null");
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public final PolylineOptions zIndex(float f) {
|
||
|
this.zzcs = f;
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public final PolylineOptions width(float f) {
|
||
|
this.width = f;
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public final PolylineOptions visible(boolean z) {
|
||
|
this.zzct = z;
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public final PolylineOptions pattern(List<PatternItem> list) {
|
||
|
this.zzef = list;
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public final PolylineOptions jointType(int i) {
|
||
|
this.zzee = i;
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public final boolean isVisible() {
|
||
|
return this.zzct;
|
||
|
}
|
||
|
|
||
|
public final boolean isGeodesic() {
|
||
|
return this.zzdz;
|
||
|
}
|
||
|
|
||
|
public final boolean isClickable() {
|
||
|
return this.zzcu;
|
||
|
}
|
||
|
|
||
|
public final float getZIndex() {
|
||
|
return this.zzcs;
|
||
|
}
|
||
|
|
||
|
public final float getWidth() {
|
||
|
return this.width;
|
||
|
}
|
||
|
|
||
|
public final Cap getStartCap() {
|
||
|
return this.zzec;
|
||
|
}
|
||
|
|
||
|
public final List<LatLng> getPoints() {
|
||
|
return this.zzdx;
|
||
|
}
|
||
|
|
||
|
public final List<PatternItem> getPattern() {
|
||
|
return this.zzef;
|
||
|
}
|
||
|
|
||
|
public final int getJointType() {
|
||
|
return this.zzee;
|
||
|
}
|
||
|
|
||
|
public final Cap getEndCap() {
|
||
|
return this.zzed;
|
||
|
}
|
||
|
|
||
|
public final int getColor() {
|
||
|
return this.color;
|
||
|
}
|
||
|
|
||
|
public final PolylineOptions geodesic(boolean z) {
|
||
|
this.zzdz = z;
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public final PolylineOptions color(int i) {
|
||
|
this.color = i;
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public final PolylineOptions clickable(boolean z) {
|
||
|
this.zzcu = z;
|
||
|
return this;
|
||
|
}
|
||
|
}
|