Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
357 B

export const INITIAL_MOBILE_ZOOM = 0.45;
export const MINIMUM_MOBILE_ZOOM = 0.2;
export const INITIAL_DESKTOP_ZOOM = 1;
export const MINIMUM_DESKTOP_ZOOM = 0.75;
export function centerRoadmap(options: any) {
return;
}
export function calculateDimensions(options: any) {
return {
x: 0,
y: 0,
measuredWidth: 0,
measuredHeight: 0,
};
}