完成时间轴前后端数据连通

This commit is contained in:
JIANG
2025-10-10 15:12:23 +08:00
parent 5d54ad11d4
commit fa0970bd79
13 changed files with 416 additions and 285 deletions

View File

@@ -36,9 +36,9 @@ const Scale: React.FC = () => {
return (
<div className="absolute bottom-0 right-0 flex col-auto px-2 bg-white bg-opacity-70 text-black rounded-tl shadow-md text-sm">
<div className="px-1">Zoom Level: {zoomLevel.toFixed(1)}</div>
<div className="px-1">: {zoomLevel.toFixed(1)}</div>
<div className="px-1">
Coordinates: {coordinates[0]}, {coordinates[1]}
: {coordinates[0]}, {coordinates[1]}
</div>
</div>
);