satupeta-main/app/(modules)/maps/utils/cesium.ts

12 lines
283 B
TypeScript
Raw Permalink Normal View History

2026-01-27 02:31:12 +00:00
const leafletZoomToCesiumHeight = (zoomLevel: number) => {
const maxZoom = 18;
const minHeight = 10000;
const maxHeight = 2000000;
const height =
minHeight + (maxHeight - minHeight) * (1 - zoomLevel / maxZoom);
return height;
};
export { leafletZoomToCesiumHeight };