This commit is contained in:
Pringgosutono
2025-09-17 09:41:20 +07:00
parent b3a2467629
commit 08776e5a1b
2 changed files with 11 additions and 10 deletions

View File

@ -113,10 +113,10 @@
});
let coords
setTimeout(() => {
setTimeout(async() => {
map.invalidateSize(); // force Leaflet to recalc
map.fitBounds(polyline.getBounds());
// map.fitBounds(coords.map(c => L.latLng(c[0], c[1])));
// map.fitBounds(polyline.getBounds());
map.fitBounds(await coords.map(c => L.latLng(c[0], c[1])));
}, 200);
const linesData = (@json($list));
@ -136,12 +136,12 @@
.map((point) => [point.latitude, point.longitude])
// 4) Add polyline
const polyline = L.polyline(points,{
color: 'red',
weight: 3,
opacity: 0.7,
smoothFactor: 1
}).addTo(map);
// const polyline = L.polyline(points,{
// color: 'red',
// weight: 3,
// opacity: 0.7,
// smoothFactor: 1
// }).addTo(map);
// const lines = L.Routing.control({
// waypoints: points,

View File

@ -49,13 +49,14 @@
<div class="form-group">
<label class="text-muted">From</label>
<!-- default today -->
<!-- <input class="form-control" id="tgl0" value="15-09-2025 00:00"> -->
<!-- <input class="form-control" id="tgl0" value="12-09-2025 00:00"> -->
<input class="form-control" id="tgl0" value="{{ date('d-m-Y 00:00') }}">
</div>
</div>
<div class="col-2">
<div class="form-group">
<label class="text-muted">To</label>
<!-- <input class="form-control" id="tgl1" value="12-09-2025 23:00"> -->
<input class="form-control" id="tgl1" value="{{ date('d-m-Y 23:59') }}">
</div>
</div>