12 lines
283 B
TypeScript
Executable File
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 };
|