Add constant DISPLACEMENT_LOCATION_COUNT.
This commit is contained in:
parent
a86d1f4a38
commit
36f15bf057
1 changed files with 2 additions and 1 deletions
|
@ -71,6 +71,7 @@ class TrackerService: Service()
|
||||||
var lastCommit: Long = 0
|
var lastCommit: Long = 0
|
||||||
var location_min_time_ms: Long = 0
|
var location_min_time_ms: Long = 0
|
||||||
private val RECENT_TRKPT_COUNT = 7200
|
private val RECENT_TRKPT_COUNT = 7200
|
||||||
|
private val DISPLACEMENT_LOCATION_COUNT = 5
|
||||||
lateinit var recent_displacement_locations: Deque<Location>
|
lateinit var recent_displacement_locations: Deque<Location>
|
||||||
lateinit var recent_trackpoints_for_mapview: MutableList<GeoPoint>
|
lateinit var recent_trackpoints_for_mapview: MutableList<GeoPoint>
|
||||||
var bound: Boolean = false
|
var bound: Boolean = false
|
||||||
|
@ -282,7 +283,7 @@ class TrackerService: Service()
|
||||||
}
|
}
|
||||||
|
|
||||||
recent_displacement_locations.add(location)
|
recent_displacement_locations.add(location)
|
||||||
while (recent_displacement_locations.size > 5)
|
while (recent_displacement_locations.size > DISPLACEMENT_LOCATION_COUNT)
|
||||||
{
|
{
|
||||||
recent_displacement_locations.removeFirst()
|
recent_displacement_locations.removeFirst()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue