satupeta-main/app/(modules)/maps/utils/cesium.ts
2026-02-23 12:21:05 +07:00

12 lines
283 B
TypeScript
Executable File

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 };