12345678910111213141516171819 |
- import { mathUtil } from "../Util/MathUtil";
- import { magnifierService } from "../Service/MagnifierService";
- export default class AddMagnifier {
- constructor() {
- this.newMagnifier = null;
- }
- buildMagnifier(position) {
- this.newMagnifier = magnifierService.create(position);
- listenLayer.clear();
- this.clear();
- }
- clear() {}
- }
- const addMagnifier = new AddMagnifier();
- export { addMagnifier };
|