Initial version -- added millennium read funcionality

This commit is contained in:
Pablo
2026-03-09 22:05:28 +01:00
commit 77c2ded482
2770 changed files with 141927 additions and 0 deletions
@@ -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;
}
}