Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
package com.google.maps.android.data.kml;
|
||||
|
||||
import com.google.android.gms.maps.model.LatLng;
|
||||
import com.google.maps.android.data.LineString;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class KmlLineString extends LineString {
|
||||
private final ArrayList<Double> mAltitudes;
|
||||
|
||||
public KmlLineString(ArrayList<LatLng> arrayList) {
|
||||
this(arrayList, null);
|
||||
}
|
||||
|
||||
public KmlLineString(ArrayList<LatLng> arrayList, ArrayList<Double> arrayList2) {
|
||||
super(arrayList);
|
||||
this.mAltitudes = arrayList2;
|
||||
}
|
||||
|
||||
public ArrayList<Double> getAltitudes() {
|
||||
return this.mAltitudes;
|
||||
}
|
||||
|
||||
@Override // com.google.maps.android.data.LineString, com.google.maps.android.data.Geometry
|
||||
public List<LatLng> getGeometryObject() {
|
||||
return new ArrayList(super.getGeometryObject());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user