imageLayerEx.js 275 B

12345678910111213141516
  1. import * as maptalks from 'maptalks'
  2. class ImageLayerEx extends maptalks.ImageLayer {
  3. constructor(id, images, options) {
  4. super(id, images, options)
  5. this.setId(id)
  6. }
  7. toJSON() {
  8. }
  9. }
  10. ImageLayerEx.registerJSONType('ImageLayerEx')
  11. export default ImageLayerEx