equipmentList.js 1.0 KB

12345678910111213141516171819202122232425
  1. export const equipmentList = [
  2. {
  3. equipId: "11111", //设备id
  4. equipName: "xxx", //设备名称
  5. bimLocation: "28588.48688281251,-65850.65770572917,53800.0", //设备坐标
  6. width: 30, //设备在视图中展示的大小(1=实际中的1m)
  7. height: 30,
  8. tooltip: { //展示文案
  9. a:'asdfasdf'
  10. }
  11. },
  12. {
  13. equipId: "11111", //设备id
  14. equipName: "xxx", //设备名称
  15. bimLocation: "30588.48688281251,-65850.65770572917,53800.0", //设备坐标
  16. width: 30, //设备在视图中展示的大小(1=实际中的1m)
  17. height: 30,
  18. textObj: { //展示文案
  19. text: ['xxxxx', 'yyyyyyy'], //展示内容,一个item为一行
  20. position: [29860.11, -61677.781334469626], //展示位置(一般与解析后的bimLocation结合使用)
  21. fontSize: 1000, // 文字大小
  22. color: '#373C43' //文字颜色
  23. }
  24. },
  25. ]