25 lines
771 B
Java
25 lines
771 B
Java
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;
|
|
}
|
|
} |