RobotApp/RobotApp.Client/Pages/MapsManager.razor
Đăng Nguyễn f1a7be15f2 update
2025-12-22 18:38:35 +07:00

24 lines
739 B
Plaintext

@page "/maps-manager"
@rendermode InteractiveWebAssemblyNoPrerender
<PageTitle>Map Manager</PageTitle>
<div class="d-flex w-100 h-100 p-2 overflow-hidden flex-row">
<div class="me-4 d-flex flex-column" style="height: 100%; width: 40%">
<div class="mb-4" style="height: 50%; width: 100%">
<RobotApp.Client.Pages.Components.Mapping.MapTable />
</div>
<div class="flex-grow-1" style="height: 50%; width: 100%">
<RobotApp.Client.Pages.Components.Mapping.RobotInfomation />
</div>
</div>
<div class="flex-grow-1 h-100" style="width: 60%">
<RobotApp.Client.Pages.Components.Mapping.MapView />
</div>
</div>
@code {
private List<MapDto> MapsShow = [];
}