- Split utils.js into three separate files to enhance modularity and maintainability:
1. geometryUtils.js: Contains geometry-related functions like parsePoint and findClosestPoints.
2. mapUtils.js: Contains functions related to map operations such as redrawPolyline and saveLineData.
3. markerUtils.js: Contains functions related to marker operations like insertNewMarker and handleEditPoi.
- Updated import statements in the relevant files to reflect the new structure.
- Ensured that each utility module is self-contained and has clear responsibilities.
This refactor improves the separation of concerns, making the codebase more organized and easier to navigate. Future maintenance and enhancements can now be more easily localized to the appropriate utility module.