You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

S3MLayer.js 326B

123456789101112131415
  1. /**
  2. * @Author: Caven
  3. * @Date: 2022-02-20 13:46:53
  4. */
  5. import { Cesium } from '@dc-modules/namespace'
  6. import State from '@dc-modules/state/State'
  7. import { Layer } from '@dc-modules/layer'
  8. import S3MTilesLayer from 's3m-lib/S3MTiles/S3MTilesLayer'
  9. class S3MLayer extends Layer {
  10. constructor(id, url) {
  11. super(id)
  12. }
  13. }