CesiumLoader icon indicating copy to clipboard operation
CesiumLoader copied to clipboard

A basic boundingbox loader to load models from BIMserver in CesiumJS

CesiumLoader

JSON format

The returned JSON looks like this:

[
  {
    "name": "Name of IFC entity",
    "guid": "GUID of IFC entity",
    "min": {
      "x": 1,
      "y": 1,
      "z": 1
    },
    "max": {
      "x": 5,
      "y": 6,
      "z": 3
    }
  },
  ...
]