Initial version -- added millennium read funcionality
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.google.maps.android.data.kml;
|
||||
|
||||
import com.google.android.gms.maps.model.LatLng;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
|
||||
/* JADX INFO: loaded from: classes2.dex */
|
||||
public class KmlTrack extends KmlLineString {
|
||||
private final HashMap<String, String> mProperties;
|
||||
private final ArrayList<Long> mTimestamps;
|
||||
|
||||
public KmlTrack(ArrayList<LatLng> arrayList, ArrayList<Double> arrayList2, ArrayList<Long> arrayList3, HashMap<String, String> map) {
|
||||
super(arrayList, arrayList2);
|
||||
this.mTimestamps = arrayList3;
|
||||
this.mProperties = map;
|
||||
}
|
||||
|
||||
public ArrayList<Long> getTimestamps() {
|
||||
return this.mTimestamps;
|
||||
}
|
||||
|
||||
public HashMap<String, String> getProperties() {
|
||||
return this.mProperties;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user