初始化

This commit is contained in:
yuding
2025-12-26 17:08:02 +08:00
parent a754a5a511
commit cd1f8186d0
11 changed files with 361 additions and 53 deletions

View File

@@ -380,8 +380,8 @@ export class WalkControlPanel implements IBimComponent {
private getIconSVG(type: string): string {
const icons: Record<string, string> = {
'plan-view': getIcon('地图'),
'path': getIcon('地图'),
'walk': getIcon('漫游')
'path': getIcon('路径漫游'),
'walk': getIcon('第一人称漫游')
};
return icons[type] || '';
}