From ff9eb0e904ff9d11c495bbb745c0ab3928cc5951 Mon Sep 17 00:00:00 2001 From: Stefan Dej Date: Tue, 10 Sep 2024 21:48:00 +0200 Subject: [PATCH] fix: change the default distance to 200 (zoom out a little bit) Signed-off-by: Stefan Dej --- src/components/charts/HeightmapChart.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/charts/HeightmapChart.vue b/src/components/charts/HeightmapChart.vue index ca3788e1c..5cb861b66 100644 --- a/src/components/charts/HeightmapChart.vue +++ b/src/components/charts/HeightmapChart.vue @@ -149,7 +149,7 @@ export default class HeightmapChart extends Mixins(BaseMixin, BedmeshMixin, Them boxWidth: 100 * this.scaleX, boxDepth: 100 * this.scaleY, viewControl: { - distance: 150, + distance: 200, ...this.defaultOrientation, }, },