|
@@ -122,7 +122,6 @@ export default class Draw {
|
|
|
}
|
|
|
|
|
|
drawBackGroundImg(vector) {
|
|
|
- console.log(vector);
|
|
|
const img = vector.imageData;
|
|
|
const width = help.getReal(img.width);
|
|
|
const height = help.getReal(img.height);
|
|
@@ -562,11 +561,9 @@ export default class Draw {
|
|
|
}
|
|
|
|
|
|
drawLine(vector) {
|
|
|
- console.log(vector);
|
|
|
if ([UIEvents.Arrow, UIEvents.MeasureLine].includes(vector.category)) {
|
|
|
return this.drawArrow(vector);
|
|
|
}
|
|
|
- console.log(vector);
|
|
|
let start = dataService.getPoint(vector.startId);
|
|
|
start = coordinate.getScreenXY(start);
|
|
|
let end = dataService.getPoint(vector.endId);
|