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 mProperties; private final ArrayList mTimestamps; public KmlTrack(ArrayList arrayList, ArrayList arrayList2, ArrayList arrayList3, HashMap map) { super(arrayList, arrayList2); this.mTimestamps = arrayList3; this.mProperties = map; } public ArrayList getTimestamps() { return this.mTimestamps; } public HashMap getProperties() { return this.mProperties; } }