4ee4376
1
2
3
4
5
6
7
8
9
10
import * as CONST from '../../constants'; import layer from './layer'; export default class heightmap extends layer { constructor (options) { options.type = CONST.T_HEIGHTMAP; super(options); this.visible = false; } }