1. /**
    
  2.  * Copyright (c) Meta Platforms, Inc. and affiliates.
    
  3.  *
    
  4.  * This source code is licensed under the MIT license found in the
    
  5.  * LICENSE file in the root directory of this source tree.
    
  6.  *
    
  7.  * @flow
    
  8.  */
    
  9. 
    
  10. export const MOVE_WHEEL_DELTA_THRESHOLD = 1;
    
  11. export const ZOOM_WHEEL_DELTA_THRESHOLD = 1;
    
  12. export const MIN_ZOOM_LEVEL = 0.25;
    
  13. export const MAX_ZOOM_LEVEL = 1000;
    
  14. export const DEFAULT_ZOOM_LEVEL = 0.25;