From 94d5b6bd99af3971fc868b8a0384f685de1f4092 Mon Sep 17 00:00:00 2001 From: bach Date: Tue, 25 Apr 2023 14:30:04 +0200 Subject: [PATCH] hidden node id in map --- src/components/ConcernementMapItem.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/ConcernementMapItem.vue b/src/components/ConcernementMapItem.vue index dd0d385..d232bbe 100644 --- a/src/components/ConcernementMapItem.vue +++ b/src/components/ConcernementMapItem.vue @@ -453,12 +453,12 @@ export default { } } - // concernement id @center - this.ctx.beginPath(); - // this.ctx.arc(this.pos.x, this.pos.y, 4, 0, 2 * Math.PI, false); - this.ctx.fillStyle = "#000"; - this.ctx.fillText(this.concernement.id, this.pos.x, this.pos.y) - this.ctx.fill(); + // // concernement id @center + // this.ctx.beginPath(); + // // this.ctx.arc(this.pos.x, this.pos.y, 4, 0, 2 * Math.PI, false); + // this.ctx.fillStyle = "#000"; + // this.ctx.fillText(this.concernement.id, this.pos.x, this.pos.y) + // this.ctx.fill(); } },