diff --git a/resources/views/tracker.blade.php b/resources/views/tracker.blade.php index 08267a5..11889c2 100644 --- a/resources/views/tracker.blade.php +++ b/resources/views/tracker.blade.php @@ -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 ], {