这是一个针对于BIM应用开源的3d模型框架
模型文档地址 https://github.com/luojiong/bimgl
模型演示地址 https://luojiong.github.io/bimgl-docs/ (可能有点慢 因为资源在GitHub服务器)
### 安装
#### npm i bimgl 或者 yarn add bimgl
### 使用方式
```
<div id='viewer'></div>
```
```
import BIMGL from "bimgl"; const bimgl = new BIMGL(); bimgl.init(document.getElementById('viewer'),{ uri: `modelURL`, })
```