Skip to content

Commit

Permalink
zoom max 값 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
EmiliaBaek committed Jan 12, 2024
1 parent 54c4bb1 commit dbf396c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sample/cesiumWindSample/wind3D.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
2 changes: 1 addition & 1 deletion sample/cesiumWindSeoulSample/wind3D.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit dbf396c

Please sign in to comment.