mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-09-02 05:30:56 -07:00
Fix on large AK tracts that are off screen (#1740)
* Change low to high transition and global zoom - change the low to high transition from 7 to 5. This can not go any lower as high tiles on AWS only go to zoom level 5 - reduce the zoom level globally on all census tracts * Remove geolocation from feature flag - geolocation is now available to all * Add python notebook that sorts all tracts by area - add a column of the required zoom level for the tract to be fully contained in the viewport * Place geolocation back to behind a feature flag * Differentiate zoom levels b/w shortcuts and tracts
This commit is contained in:
parent
a5a4c31bb0
commit
eb3004c0d5
3 changed files with 518 additions and 49 deletions
|
@ -204,11 +204,14 @@ export const SCORE_PROPERTY_HIGH = 'SM_PFS';
|
|||
// Zoom
|
||||
export const GLOBAL_MIN_ZOOM = 3;
|
||||
export const GLOBAL_MAX_ZOOM = 22;
|
||||
|
||||
export const GLOBAL_MIN_ZOOM_LOW = 3;
|
||||
export const GLOBAL_MAX_ZOOM_LOW = 7;
|
||||
export const GLOBAL_MIN_ZOOM_HIGH = 7;
|
||||
export const GLOBAL_MAX_ZOOM_LOW = 5;
|
||||
|
||||
export const GLOBAL_MIN_ZOOM_HIGH = 5;
|
||||
export const GLOBAL_MAX_ZOOM_HIGH = 11;
|
||||
export const GLOBAL_MIN_ZOOM_FEATURE_BORDER = 7;
|
||||
|
||||
export const GLOBAL_MIN_ZOOM_FEATURE_BORDER = 5;
|
||||
export const GLOBAL_MAX_ZOOM_FEATURE_BORDER = 22;
|
||||
|
||||
// Opacity
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue