Update database and remove obsolete image files; increase map zoom level

- Updated fixmate.db contents.
- Deleted two outdated image files from uploads directory.
- Increased maximum zoom level for the map in dashboard app.js from 19 to 30 for enhanced detail.
This commit is contained in:
2025-09-27 13:01:12 +08:00
parent a8eae96f7f
commit 77df67d8c0
5 changed files with 1 additions and 1 deletions

View File

@@ -200,7 +200,7 @@ function App(){
// init map once
const map = L.map('map', { center:[3.1390,101.6869], zoom:12, preferCanvas:true });
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom:19,
maxZoom:30,
attribution:'© OpenStreetMap'
}).addTo(map);
mapRef.current = map;