Enhance map components and improve build processes
- Updated Makefile to include `--build` flag for `docker-compose.dev.yml` and `--no-cache` for `docker-compose.prod.yml` to ensure fresh builds. - Added new CSS styles for Leaflet tooltips and popups to utilize theme colors, enhancing visual consistency. - Enhanced MapView component with new props for markers and current zoom level, improving marker management and zoom functionality. - Introduced new icons for copy and info actions to improve user interface clarity. - Updated MapBookmarks and MapControls components to support new features and improve user experience with bookmarks and zoom controls. - Refactored MapSearch to display coordinates and improve marker search functionality.
This commit is contained in:
4
Makefile
4
Makefile
@@ -3,10 +3,10 @@
|
||||
TOOLS_COMPOSE = docker compose -f docker-compose.tools.yml
|
||||
|
||||
dev:
|
||||
docker compose -f docker-compose.dev.yml up
|
||||
docker compose -f docker-compose.dev.yml up --build
|
||||
|
||||
build:
|
||||
docker compose -f docker-compose.prod.yml build
|
||||
docker compose -f docker-compose.prod.yml build --no-cache
|
||||
|
||||
test: test-backend test-frontend
|
||||
|
||||
|
||||
Reference in New Issue
Block a user