1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| import AssetType from "./AssetType";
|
| const AssetConfig = {
| [AssetType.ORTHOPHOTO]: {
| name: "Orthophoto",
| icon: "far fa-image"
| },
| [AssetType.TERRAIN_MODEL]: {
| name: "Terrain Model",
| icon: "fa fa-chart-area"
| },
| [AssetType.SURFACE_MODEL]: {
| name: "Surface Model",
| icon: "fa fa-chart-area"
| },
| [AssetType.POINTCLOUD]: {
| name: "Pointcloud",
| icon: "fa fa-cube"
| },
| [AssetType.TEXTURED_MODEL]: {
| name: "Texture Model",
| icon: "fab fa-connectdevelop"
| }
| };
|
| export default AssetConfig;
|
|