File size: 3,737 Bytes
2f6a09b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>

<head>
    <title>Get Me Out! - Development Grid View</title>
    <style>
        body {
            margin: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background: #1a1a1a;
        }
        
        .dev-grid {
            position: relative;
            margin: 40px;
        }
        
        .numbers {
            position: absolute;
            display: flex;
            font-family: monospace;
            color: white;
            background: rgba(0,0,0,0.5);
        }

        .top-numbers, .bottom-numbers {
            left: 0;
            right: 0;
            height: 30px;
            flex-direction: row;
        }

        .left-numbers, .right-numbers {
            top: 0;
            bottom: 0;
            width: 30px;
            flex-direction: column;
        }

        .top-numbers { top: -30px; }
        .bottom-numbers { bottom: -30px; }
        .left-numbers { left: -30px; }
        .right-numbers { right: -30px; }
        
        .number {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        .grid-cell {
            position: absolute;
            width: 30px;
            height: 30px;
            border: 1px solid rgba(255,255,255,0.2);
            pointer-events: none;
        }

        #mapWrapper {
            border: 1px solid rgba(255,255,255,0.3);
            position: relative;
            width: 960px;
            height: 600px;
        }

        #mapBackground {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/assets/img/appartment/finalmap.png') no-repeat center center;
            background-size: 100% 100%;
            pointer-events: none;
            z-index: -1;
        }
    </style>
</head>

<body>
    <div id="mapWrapper" class="dev-grid">
        <div id="mapBackground"></div>

        <div id="topNumbers" class="numbers top-numbers"></div>
        <div id="bottomNumbers" class="numbers bottom-numbers"></div>
        <div id="leftNumbers" class="numbers left-numbers"></div>
        <div id="rightNumbers" class="numbers right-numbers"></div>
        <div id="gridOverlay"></div>
    </div>

    <script>
        document.addEventListener('DOMContentLoaded', function() {
            // Add numbers on all sides
            const addNumbers = (elementId, count) => {
                const container = document.getElementById(elementId);
                for (let i = 0; i < count; i++) {
                    const number = document.createElement('div');
                    number.className = 'number';
                    number.textContent = i;
                    container.appendChild(number);
                }
            };

            // Add numbers to all sides
            addNumbers('topNumbers', 32);
            addNumbers('bottomNumbers', 32);
            addNumbers('leftNumbers', 20);
            addNumbers('rightNumbers', 20);

            // Add grid overlay
            const gridOverlay = document.getElementById('gridOverlay');
            for (let y = 0; y < 20; y++) {
                for (let x = 0; x < 32; x++) {
                    const cell = document.createElement('div');
                    cell.className = 'grid-cell';
                    cell.style.left = (x * 30) + 'px';
                    cell.style.top = (y * 30) + 'px';
                    gridOverlay.appendChild(cell);
                }
            }
        });
    </script>
</body>

</html>