mirror of
https://github.com/ceratic/project_vollidioten_website.git
synced 2026-05-14 00:16:47 +02:00
- Added world map page with interactive marker display - Implemented admin map management for marker CRUD operations - Added map layers and markers seed data to database - Integrated new routes for map functionality - Updated database configuration for production environment - Added documentation page route - Enhanced package.json with required dependencies for map features
17 lines
529 B
JavaScript
17 lines
529 B
JavaScript
#!/usr/bin/env node
|
|
|
|
// Debug script for map processing
|
|
const debugInterface = require('./server.js');
|
|
|
|
console.log('🔧 Map Processor Debug Console');
|
|
console.log('Available commands:');
|
|
console.log(' assembleMap() - Assemble world map');
|
|
console.log(' getTiles() - Get all map tiles');
|
|
console.log(' getMetadata() - Get map metadata');
|
|
console.log(' testCoords(x, z) - Test coordinate conversion');
|
|
console.log('');
|
|
|
|
// Run assembleMap by default
|
|
console.log('🚀 Running map assembly...');
|
|
debugInterface.assembleMap();
|