From dbf396c9dc0802aba9ab13f829fe54062daa5d75 Mon Sep 17 00:00:00 2001 From: EmiliaBaek Date: Fri, 12 Jan 2024 14:23:53 +0900 Subject: [PATCH] =?UTF-8?q?zoom=20max=20=EA=B0=92=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sample/cesiumWindSample/wind3D.js | 2 +- sample/cesiumWindSeoulSample/wind3D.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sample/cesiumWindSample/wind3D.js b/sample/cesiumWindSample/wind3D.js index d00cc6d..aff755f 100644 --- a/sample/cesiumWindSample/wind3D.js +++ b/sample/cesiumWindSample/wind3D.js @@ -396,7 +396,7 @@ export class Wind3D { } else if (viewHeight > 1000) { return Math.ceil(k * viewHeight + viewHeight / 25); } else if (viewHeight > 500) { - return Math.ceil(k * viewHeight + viewHeight / 8); + return Math.ceil(k * viewHeight + viewHeight / 4); } else { return Math.ceil(k * viewHeight + viewHeight); } diff --git a/sample/cesiumWindSeoulSample/wind3D.js b/sample/cesiumWindSeoulSample/wind3D.js index 719069c..692ad9a 100644 --- a/sample/cesiumWindSeoulSample/wind3D.js +++ b/sample/cesiumWindSeoulSample/wind3D.js @@ -396,7 +396,7 @@ export class Wind3D { } else if (viewHeight > 1000) { return Math.ceil(k * viewHeight + viewHeight / 25); } else if (viewHeight > 500) { - return Math.ceil(k * viewHeight + viewHeight / 8); + return Math.ceil(k * viewHeight + viewHeight / 4); } else { return Math.ceil(k * viewHeight + viewHeight); }