Load.js 605 B

123456789101112131415161718192021
  1. import { dataService } from "./Service/DataService.js";
  2. import { stateService } from "./Service/StateService.js";
  3. import { coordinate } from "./Coordinate.js";
  4. import Constant from "./Constant";
  5. import { tagService } from "./Service/TagService";
  6. import { mathUtil } from "./Util/MathUtil";
  7. import { measureService } from "./Service/MeasureService";
  8. import { cameraService } from "./Service/CameraService";
  9. export default class Load {
  10. constructor(layer) {
  11. this.layer = layer;
  12. this.version = "v1.0";
  13. this.vectorsJson = null;
  14. this.newVectorId = null;
  15. }
  16. load(data) {}
  17. upload() {}
  18. }