This commit is contained in:
Ben Goldsworthy 2023-05-18 19:41:59 +00:00
parent 6e0eb2abcc
commit c6edbdee65

View file

@ -59,14 +59,18 @@
attribution: 'OpenStreetMap' attribution: 'OpenStreetMap'
}).addTo(map); }).addTo(map);
@for($idx = 0; $idx <= count($trip->locations); $idx += 99) @for($idx = 3; $idx <= count($trip->locations); $idx += 99)
/* /*
* Populate the route line. * Populate the route line.
*/ */
L.polyline([ L.polyline([
@foreach(array_slice($trip->locations, $idx, 100) as $location) @foreach(array_slice($trip->locations, $idx, 100) as $location)
@if(!in_array($location->id, config('app.current_trip_ignore'))) @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 @endif
@endforeach @endforeach
], { ], {