Possibility of including image libraries in Synoptics
Introduction
In Q4 we keep adding improvements like in this case.
A new functionality has been created to be able to indicate, from the initial configuration of the synoptic styles, image libraries that can be organized by theme.
So that users can easily import them to the synoptics, thus creating a more useful and agile tool, as shown in the example video.
The images can be grouped into themes to make it easier for the user to locate them.
This is the structure in json format to include. It is only necessary to indicate the title and address of the image that can be stored as resources in a web project of the platform or in the repository of binary files of the platform.
"imagelib":[
{"name":"Boilers 1",
"description":"description group 1"
"content":[
{
"title":"Boiler 1",
"link":"https://lab.onesaitplatform.com/controlpanel/web/images/boiler1.svg"
},
{
"title":"Boiler 2",
"link":"https://lab.onesaitplatform.com/controlpanel/web/images/boiler2.svg"
},
{
"title":"Boiler 3",
"link":"https://lab.onesaitplatform.com/controlpanel/web/images/boiler3.svg"
}
]
},
{"name":"Boilers 2",
"description":"description group 2"
"content":[
{
"title":"Boiler 4",
"link":"https://lab.onesaitplatform.com/controlpanel/web/images/boiler4.svg"
},
{
"title":"Boiler 5",
"link":"https://lab.onesaitplatform.com/controlpanel/web/images/boiler5.svg"
}
]
}
]
Â
Â