Helper functions for layers
        
        
        
- Source:
 - Layer.js, line 1729
 
Methods
- 
    
<static> createFeaturesForCsvExcel(json, config, type, dataProjection, mapProjection) → {object|undefined}
 - 
    
    
    Create features for CSV and XLS layers
Parameters:
Name Type Description jsonarray Data from CSV or XLS configCSV | XLS CSV/XLS Configuration typestring Layer type (CSV/XLS) dataProjectionstring Projection of coordinates in CSV/XLS mapProjectionstring Map projection - Source:
 - Layer.js, line 1745
 
Returns:
- Type
 - object | undefined
 
 - 
    
<static> createFeaturesForGps(gpx, config, gpsProjection, mapProjection, callback) → {function}
 - 
    
    
    Create features for GPS through a custom layer
Parameters:
Name Type Description gpxobject GPX data configGPS GPS Configuration gpsProjectionstring EPSG Code of GPX data projection mapProjectionEPSG Code of map projection callbackfunction Callback function. It will be called when all information of layer are parsed. - Source:
 - Layer.js, line 1913
 
Returns:
- Type
 - function
 
 - 
    
<static> parseCsvExcelJson(format, json, config, options, featureProjection, mapProjection, copyright, callback) → {function}
 - 
    
    
    Parse JSON with CSV/XLS data
Parameters:
Name Type Description formatstring Layer type (CSV/XLS) jsonarray Array with CSV/XLS data configCSV | XLS CSV/XLS Configuration optionsobject Options used to parse data from XLS/CSV featureProjectionstring EPSG Code of data projection in XLS/CSV mapProjectionstring EPSG Code of map projection copyrightstring | undefined Data copyright callbackfunction Callback function. It will be called when all information of layer are parsed. - Source:
 - Layer.js, line 1867
 
Returns:
- Type
 - function
 
 - 
    
<static> programmaticLayerConfig(layer) → {object|string}
 - 
    
    
    Find configuration for layers that are programmatically added
Parameters:
Name Type Description layerobject Layer added - Source:
 - Layer.js, line 1933
 
Returns:
- Type
 - object | string