123456789101112131415161718192021 |
- import { dataService } from "./Service/DataService.js";
- import { stateService } from "./Service/StateService.js";
- import { coordinate } from "./Coordinate.js";
- import Constant from "./Constant";
- import { tagService } from "./Service/TagService";
- import { mathUtil } from "./Util/MathUtil";
- import { measureService } from "./Service/MeasureService";
- import { cameraService } from "./Service/CameraService";
- export default class Load {
- constructor(layer) {
- this.layer = layer;
- this.version = "v1.0";
- this.vectorsJson = null;
- this.newVectorId = null;
- }
- load(data) {}
- upload() {}
- }
|