src/config/proj4-config

Exports the configured proj4 library for use in other parts of the application. Allows transformation of coordinates using the defined custom projections.

Description:
  • Exports the configured proj4 library for use in other parts of the application. Allows transformation of coordinates using the defined custom projections.

Source:
Example
import proj4 from './proj4Config';
const coords = proj4('EPSG:2273', 'EPSG:4326', [1000, 2000]);
console.log(coords);