12345678910111213141516171819202122232425 |
- export const equipmentList = [
- {
- equipId: "11111", //设备id
- equipName: "xxx", //设备名称
- bimLocation: "28588.48688281251,-65850.65770572917,53800.0", //设备坐标
- width: 30, //设备在视图中展示的大小(1=实际中的1m)
- height: 30,
- tooltip: { //展示文案
- a:'asdfasdf'
- }
- },
- {
- equipId: "11111", //设备id
- equipName: "xxx", //设备名称
- bimLocation: "30588.48688281251,-65850.65770572917,53800.0", //设备坐标
- width: 30, //设备在视图中展示的大小(1=实际中的1m)
- height: 30,
- textObj: { //展示文案
- text: ['xxxxx', 'yyyyyyy'], //展示内容,一个item为一行
- position: [29860.11, -61677.781334469626], //展示位置(一般与解析后的bimLocation结合使用)
- fontSize: 1000, // 文字大小
- color: '#373C43' //文字颜色
- }
- },
- ]
|