fix: avoid gaps in route
This commit is contained in:
parent
fed8dab57c
commit
42fb68759e
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@
|
|||
attribution: 'OpenStreetMap'
|
||||
}).addTo(map);
|
||||
|
||||
@for($idx = 0; $idx <= count($trip->locations); $idx += 100)
|
||||
@for($idx = 0; $idx <= count($trip->locations); $idx += 99)
|
||||
/*
|
||||
* Populate the route line.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue