This commit is contained in:
Ben Goldsworthy 2023-05-18 19:41:59 +00:00
parent 6e0eb2abcc
commit c6edbdee65
1 changed files with 6 additions and 2 deletions

View File

@ -59,14 +59,18 @@
attribution: 'OpenStreetMap'
}).addTo(map);
@for($idx = 0; $idx <= count($trip->locations); $idx += 99)
@for($idx = 3; $idx <= count($trip->locations); $idx += 99)
/*
* Populate the route line.
*/
L.polyline([
@foreach(array_slice($trip->locations, $idx, 100) as $location)
@if(!in_array($location->id, config('app.current_trip_ignore')))
[{{ $location->latitude }}, {{ $location->longitude }}],
@if(in_array($location->id, [19014, 19015, 19016, 19017, 19018, 19019]))
[9.071389, -79.383611],
@else
[{{ $location->latitude }}, {{ $location->longitude }}],
@endif
@endif
@endforeach
], {