File tree Expand file tree Collapse file tree 3 files changed +263
-281
lines changed Expand file tree Collapse file tree 3 files changed +263
-281
lines changed Original file line number Diff line number Diff line change 1010
1111## Version History  
1212
13+ ### v5.5.1  
14+ 
15+ -  :bug :  Fix ESRI Dump Approach config
16+ 
1317### v5.5.0  
1418
1519-  :rocket :  Allow QueryTopFeatures option
Original file line number Diff line number Diff line change @@ -51,9 +51,14 @@ export default class Geometry extends EventEmitter {
5151
5252    async  fetch ( config : EsriDumpConfig )  { 
5353        try  { 
54-             if  ( config . approach  ===  EsriDumpConfigApproach . BBOX  ||  EsriDumpConfigApproach . TOP_FEATURES_BBOX )  { 
54+             if  ( 
55+                 config . approach  ===  EsriDumpConfigApproach . BBOX 
56+                     ||  config . approach  ===  EsriDumpConfigApproach . TOP_FEATURES_BBOX 
57+             )  { 
5558                await  this . fetch_bbox ( config ) ; 
56-             }  else  if  ( config . approach  ===  EsriDumpConfigApproach . ITER  ||  EsriDumpConfigApproach . TOP_FEATURES_ITER )  { 
59+             }  else  if  ( config . approach  ===  EsriDumpConfigApproach . ITER 
60+                 ||  config . approach  ===  EsriDumpConfigApproach . TOP_FEATURES_ITER 
61+             )  { 
5762                await  this . fetch_iter ( config ) ; 
5863            }  else  { 
5964                throw  new  Err ( 400 ,  null ,  'Unknown Approach' ) ; 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments